Merge branch 'master' of oss.readytalk.com:/var/local/git/avian

This commit is contained in:
Joel Dice 2008-08-11 15:20:31 -06:00
commit b6ce0ca73e
4 changed files with 67 additions and 0 deletions

View File

@ -0,0 +1,45 @@
/* Copyright (c) 2008, Avian Contributors
Permission to use, copy, modify, and/or distribute this software
for any purpose with or without fee is hereby granted, provided
that the above copyright notice and this permission notice appear
in all copies.
There is NO WARRANTY for this software. See license.txt for
details. */
package java.lang;
public class AssertionError extends Error {
public AssertionError() {
super("", null);
}
public AssertionError(boolean detailMessage) {
super(""+detailMessage, null);
}
public AssertionError(char detailMessage) {
super(""+detailMessage, null);
}
public AssertionError(double detailMessage) {
super(""+detailMessage, null);
}
public AssertionError(float detailMessage) {
super(""+detailMessage, null);
}
public AssertionError(int detailMessage) {
super(""+detailMessage, null);
}
public AssertionError(long detailMessage) {
super(""+detailMessage, null);
}
public AssertionError(Object detailMessage) {
super(""+detailMessage, null);
}
}

View File

@ -96,6 +96,8 @@ public final class Character implements Comparable<Character> {
digit = c - '0';
} else if ((c >= 'a') && (c <= 'z')) {
digit = c - 'a' + 10;
} else if ((c >= 'A') && (c <= 'Z')) {
digit = c - 'A' + 10;
} else {
return -1;
}

View File

@ -1,3 +1,13 @@
/* Copyright (c) 2008, Avian Contributors
Permission to use, copy, modify, and/or distribute this software
for any purpose with or without fee is hereby granted, provided
that the above copyright notice and this permission notice appear
in all copies.
There is NO WARRANTY for this software. See license.txt for
details. */
package java.lang;
public @interface Override {

View File

@ -1,3 +1,13 @@
/* Copyright (c) 2008, Avian Contributors
Permission to use, copy, modify, and/or distribute this software
for any purpose with or without fee is hereby granted, provided
that the above copyright notice and this permission notice appear
in all copies.
There is NO WARRANTY for this software. See license.txt for
details. */
package java.lang;