Replaced Exception with more specific IllegalAccessException in Display.java

This commit is contained in:
Elias Naur 2004-08-20 09:03:31 +00:00
parent 68e4faf560
commit c3fb7cc5c8
1 changed files with 2 additions and 3 deletions

View File

@ -196,9 +196,8 @@ public final class Display {
continue;
else
return -order[i];
} catch (Exception e) {
assert false : e.getMessage();
} catch (IllegalAccessException e) {
throw new RuntimeException(e);
}
}