You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 8, 2017. It is now read-only.
Current implementation of com.allen_sauer.gwt.log.client.Log:
public final class Log {
...
public static void trace(String message) {
debug(message, (Throwable) null);
}
...
}
Should't this be
public static void trace(String message) {
trace(message, (Throwable) null);
}
Original issue reported on code.google.com by pro1...@yahoo.de on 22 Jun 2012 at 9:01