GNOME Bugzilla – Bug 740176
Remove repeated code logic
Last modified: 2015-02-27 16:59:01 UTC
This logic is essentially repeating itself if (!g_thread_supported()) { XInitThreads(); g_thread_init(NULL); } if (!g_module_supported()) { return JNI_FALSE; } It would be better to do this instead: if (!g_thread_supported()) { XInitThreads(); g_thread_init(NULL); return JNI_FALSE; } Because it's nicer.
Created attachment 290759 [details] [review] Patch to address problem
[Moving at-spi/java-atk-wrapper bugs to separate product. See bug 740075]