2004-07-27 Bryce McKinlay <mckinlay@redhat.com>
* java/io/File.java (toURI): Throw RuntimeException, not
InternalError.
* java/lang/Runtime.java (exit): Qualify static sleep() call with
class name, not instance.
From-SVN: r85227
+2004-07-27 Bryce McKinlay <mckinlay@redhat.com>
+
+ * java/io/File.java (toURI): Throw RuntimeException, not
+ InternalError.
+ * java/lang/Runtime.java (exit): Qualify static sleep() call with
+ class name, not instance.
+
2004-07-24 Bryce McKinlay <mckinlay@redhat.com>
* Makefile.am: Add gnu/java/security/action/GetPropertyAction.java
catch (URISyntaxException use)
{
// Can't happen.
- throw (InternalError) new InternalError("Unconvertible file: "
- + this).initCause(use);
+ throw new RuntimeException(use);
}
}
}
try
{
- exitSequence.sleep(1); // Give other threads a chance.
+ Thread.sleep(1); // Give other threads a chance.
}
catch (InterruptedException e)
{