mirror of
https://github.com/corda/corda.git
synced 2025-06-19 07:38:22 +00:00
fix non-Avian classpath build regression introduced in 7a768f2
While Avian's java.util.logging.Handler only has one abstract method, the standard version has three.
This commit is contained in:
@ -120,6 +120,9 @@ public class Logging {
|
|||||||
public void publish(LogRecord r) {
|
public void publish(LogRecord r) {
|
||||||
logged[0] = true;
|
logged[0] = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void close() { }
|
||||||
|
public void flush() { }
|
||||||
});
|
});
|
||||||
|
|
||||||
Logger foo = Logger.getLogger("foo");
|
Logger foo = Logger.getLogger("foo");
|
||||||
|
@ -24,6 +24,8 @@ run make ${flags} process=interpret ${test_target}
|
|||||||
# bootimage and openjdk builds without openjdk-src don't work:
|
# bootimage and openjdk builds without openjdk-src don't work:
|
||||||
if [ -z "${openjdk}" ]; then
|
if [ -z "${openjdk}" ]; then
|
||||||
run make ${flags} bootimage=true ${test_target}
|
run make ${flags} bootimage=true ${test_target}
|
||||||
|
# might as well do an openjdk test while we're here:
|
||||||
|
run make openjdk=$JAVA_HOME ${flags} ${test_target}
|
||||||
fi
|
fi
|
||||||
run make ${flags} tails=true continuations=true ${test_target}
|
run make ${flags} tails=true continuations=true ${test_target}
|
||||||
run make ${flags} codegen-targets=all
|
run make ${flags} codegen-targets=all
|
||||||
|
Reference in New Issue
Block a user