mirror of
https://github.com/corda/corda.git
synced 2025-06-18 23:28:21 +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) {
|
||||
logged[0] = true;
|
||||
}
|
||||
|
||||
public void close() { }
|
||||
public void flush() { }
|
||||
});
|
||||
|
||||
Logger foo = Logger.getLogger("foo");
|
||||
|
Reference in New Issue
Block a user