Do not include input files in the commit system.

Co-authored-by: sigonasr2 <sigonasr2@gmail.com>
This commit is contained in:
Nic0Nic0Nii 2021-10-05 03:15:14 +00:00
parent 648dac48ca
commit 727b521a3c
3 changed files with 1 additions and 10 deletions

2
run
View File

@ -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

View File

@ -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) {

View File

@ -1 +0,0 @@
/workspace/ffxivai/src/main/java/sig/App.java