Do not include input files in the commit system.

Co-authored-by: sigonasr2 <sigonasr2@gmail.com>
main
Nic0Nic0Nii 3 years ago
parent 648dac48ca
commit 727b521a3c
  1. 2
      run
  2. 8
      src/main/java/sig/App.java
  3. 1
      target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst

2
run

@ -1,2 +1,2 @@
mvn clean compile assembly:single mvn compile assembly:single
java -jar target/ffxivai-1.0-jar-with-dependencies.jar java -jar target/ffxivai-1.0-jar-with-dependencies.jar

@ -19,14 +19,6 @@ public class App implements NativeKeyListener{
public static JFrame f; public static JFrame f;
public void nativeKeyPressed(NativeKeyEvent e) { public void nativeKeyPressed(NativeKeyEvent e) {
System.out.println("Key Pressed: " + NativeKeyEvent.getKeyText(e.getKeyCode())); System.out.println("Key Pressed: " + NativeKeyEvent.getKeyText(e.getKeyCode()));
/*if (e.getKeyCode() == NativeKeyEvent.VC_ESCAPE) {
try {
GlobalScreen.unregisterNativeHook();
} catch (NativeHookException nativeHookException) {
nativeHookException.printStackTrace();
}
}*/
} }
public void nativeKeyReleased(NativeKeyEvent e) { public void nativeKeyReleased(NativeKeyEvent e) {

Loading…
Cancel
Save