We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 306461c commit 5c81054Copy full SHA for 5c81054
imgui-binding/src/main/java/imgui/ImGui.java
@@ -5,8 +5,8 @@
5
import java.nio.ByteBuffer;
6
7
public final class ImGui {
8
- private final static String LIB_NAME_PROP = "imgui.library.name";
9
- private final static String LIB_NAME_DEFAULT = "imgui-java";
+ private static final String LIB_NAME_PROP = "imgui.library.name";
+ private static final String LIB_NAME_DEFAULT = "imgui-java";
10
11
private static final ImDrawData DRAW_DATA = new ImDrawData(100_000, 100_000, 1000);
12
private static final ImGuiIO IMGUI_IO = new ImGuiIO();
0 commit comments