'deprecated' means that in the future, this functionality is expected to be
removed from the programming language.
It generally implies that you should do what you are doing in a different
way so that in the future your code will still work.

In this case, it looks like you are trying to assign the array generated by
the split command to a scalar variable, so perl is assigning it to the array
@_ and then doing the scalar assignment behind the scenes.  Is that what you
really want?

                                /\/\ark

-----Original Message-----
From: Kirby_Sarah [mailto:[EMAIL PROTECTED]]
Sent: Monday, August 12, 2002 2:29 PM
To: '[EMAIL PROTECTED]'
Subject: deprewhat?



What does this mean?

Use of implicit split to @_ is deprecated at UNIX_prelim.pl line 344.

line 344: $policyCount = split (/\t/, $violations{$vID});

-Sarah


--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to