I if there are deprecation more than 100 it will stop,and I need to know if this limit is reached whether it will stop compiling the source files?
> -----Original Message----- > From: Robert Watkins [SMTP:[EMAIL PROTECTED] > Sent: Tuesday, July 17, 2001 7:02 PM > To: '[EMAIL PROTECTED]' > Subject: RE: too many errors > > Pradeep Gotaparthy wrote: > > How to remove the limit (100) of reported errors of the Java > > compiler in > > javac task > > You'll find that the 100 error limit is probably imposed by javac itself, > and can't be altered. > > Two options come to mind: > 1) Use multiple javac tasks, so that each javac task works on a smaller > set > of files. This will reduce the chance that a given task will hit the 100 > error limit. > > 2) Try fixing some of the errors. > > Robert. > > -- > "Duct tape is like the Force: it has a light side, a dark side, > and it holds the universe together" > Robert Watkins [EMAIL PROTECTED] [EMAIL PROTECTED]
