Bugs item #992567, was opened at 2004-07-16 14:11
Message generated for change (Tracker Item Submitted) made by Item Submitter
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=438935&aid=992567&group_id=44253
Category: None
Group: None
Status: Open
Resolution: None
Priority: 5
Submitted By: Nobody/Anonymous (nobody)
Assigned to: Nobody/Anonymous (nobody)
Summary: Compile exception:ExitingNotAllowedException
Initial Comment:
Trying to compile the following class with the javac
1.5.0 compiler in drjava, gives me an err.
class C{
<T> T m(){
return new String("hey");
}
public static void main(String[] args){
new C().<Integer>m();
}
}
1 error found:
File: (no associated file) [line: (no source location)]
Error: Compile exception:
edu.rice.cs.util.ExitingNotAllowedException: The call
to System.exit() was not allowed.
The err happens everytime, also after I closed drjava.
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=438935&aid=992567&group_id=44253
|