Skip to content

Commit

Permalink
Fix checkstyle
Browse files Browse the repository at this point in the history
  • Loading branch information
SpaiR committed Aug 18, 2022
1 parent ed9ae2f commit bcb15f4
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions imgui-binding/src/main/java/imgui/ImGui.java
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
import java.nio.file.Paths;
import java.nio.file.StandardCopyOption;

@SuppressWarnings("checkstyle:HideUtilityClassConstructor")
public class ImGui {
private static final String LIB_PATH_PROP = "imgui.library.path";
private static final String LIB_NAME_PROP = "imgui.library.name";
Expand Down Expand Up @@ -95,7 +96,7 @@ private static String tryLoadFromClasspath(final String fullLibName) {
/**
* For internal usage.
* Method is used to initiate static instantiation (loading of the native libraries etc.).
* Otherwise native libraries will be loaded on demand and natively mapped objects won't work.
* Otherwise, native libraries will be loaded on demand and natively mapped objects won't work.
*/
public static void init() {
}
Expand Down Expand Up @@ -165,10 +166,6 @@ public static boolean combo(final String label, final ImInt currentItem, final S
return flag;
*/

// Widgets: Input with Keyboard
// - If you want to use InputText() with std::string or any custom dynamic string type, see misc/cpp/imgui_stdlib.h and comments in imgui_demo.cpp.
// - Most of the ImGuiInputTextFlags flags are only useful for InputText() and not for InputFloatX, InputIntX, InputDouble etc.

/*JNI
jmethodID jImStringResizeInternalMID;
Expand Down

0 comments on commit bcb15f4

Please sign in to comment.