mirror of
https://github.com/corda/corda.git
synced 2025-01-07 13:38:47 +00:00
Merge branch 'master' of oss.readytalk.com:/var/local/git/avian
This commit is contained in:
commit
b6ce0ca73e
45
classpath/java/lang/AssertionError.java
Normal file
45
classpath/java/lang/AssertionError.java
Normal 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);
|
||||
}
|
||||
}
|
@ -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;
|
||||
}
|
||||
|
@ -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 {
|
||||
|
@ -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;
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user