Removed dead methods

This commit is contained in:
nathan 2017-01-30 02:26:18 +01:00
parent 3d510e7092
commit e4ff8da145
2 changed files with 1 additions and 7 deletions

View File

@ -20,7 +20,6 @@ import static dorkbox.systemTray.SystemTray.logger;
import com.sun.jna.Callback;
import com.sun.jna.NativeLibrary;
import com.sun.jna.Pointer;
import com.sun.jna.ptr.PointerByReference;
import dorkbox.systemTray.jna.JnaHelper;
@ -45,8 +44,6 @@ class Gobject {
// objdump -T /usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0 | grep block
public static native void g_object_get(Pointer object, String objectName, PointerByReference objectVal, Pointer nullValue);
public static native void g_object_unref(Pointer object);
public static native void g_object_force_floating(Pointer object);

View File

@ -58,7 +58,7 @@ class Gtk {
private static final boolean alreadyRunningGTK;
// when debugging the EDT, we need a longer timeout.
private static final boolean debugEDT = false;
private static final boolean debugEDT = true;
// This is required because the EDT needs to have it's own value for this boolean, that is a different value than the main thread
private static ThreadLocal<Boolean> isDispatch = new ThreadLocal<Boolean>() {
@ -554,9 +554,6 @@ class Gtk {
public static native void gtk_menu_shell_append(Pointer menu_shell, Pointer child);
// Typically this results in the menu shell being erased from the screen
public static native void gtk_menu_shell_deactivate(Pointer menuShell);
public static native void gtk_widget_set_sensitive(Pointer widget, boolean sensitive);
public static native void gtk_widget_show_all(Pointer widget);