This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package de.carecloud.app.client.base.logging; | |
import com.google.gwt.core.client.GWT; | |
import com.google.web.bindery.event.shared.UmbrellaException; | |
public class SuperDevModeUncaughtExceptionHandler implements GWT.UncaughtExceptionHandler { | |
@Override | |
public void onUncaughtException(final Throwable t) { | |
logException(t, false); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import org.slf4j.Logger; | |
import org.slf4j.LoggerFactory; | |
import javax.imageio.ImageIO; | |
import java.awt.*; | |
import java.lang.reflect.Field; | |
import java.util.logging.LogManager; | |
public class LeakProtection { |