Snapshot, replace tabs with spaces
This commit is contained in:
@@ -4,7 +4,7 @@ import mimis.util.Native;
|
||||
import mimis.value.Registry;
|
||||
|
||||
public class TestNative {
|
||||
public static void main(String[] args) {
|
||||
System.out.println(Native.getValue(Registry.CURRENT_USER, "Software\\LIRC", "password"));
|
||||
public static void main(String[] args) {
|
||||
System.out.println(Native.getValue(Registry.CURRENT_USER, "Software\\LIRC", "password"));
|
||||
}
|
||||
}
|
||||
@@ -4,6 +4,6 @@ import wiiusej.WiiUseApiManager;
|
||||
|
||||
public class TestWiiuse {
|
||||
public static void main(String[] args) {
|
||||
WiiUseApiManager.getWiimotes(0, false);
|
||||
WiiUseApiManager.getWiimotes(0, false);
|
||||
}
|
||||
}
|
||||
@@ -3,7 +3,7 @@ package jni;
|
||||
import de.hardcode.jxinput.JXInputManager;
|
||||
|
||||
public class TestXinput {
|
||||
public static void main(String[] args) {
|
||||
System.out.println(JXInputManager.getNumberOfDevices());
|
||||
}
|
||||
public static void main(String[] args) {
|
||||
System.out.println(JXInputManager.getNumberOfDevices());
|
||||
}
|
||||
}
|
||||
@@ -3,9 +3,9 @@ package jni;
|
||||
import com.dt.iTunesController.iTunes;
|
||||
|
||||
public class TestiTunes {
|
||||
public static void main(String[] args) {
|
||||
iTunes iTunes = new iTunes();
|
||||
iTunes.connect();
|
||||
iTunes.playPause();
|
||||
}
|
||||
public static void main(String[] args) {
|
||||
iTunes iTunes = new iTunes();
|
||||
iTunes.connect();
|
||||
iTunes.playPause();
|
||||
}
|
||||
}
|
||||
@@ -4,24 +4,24 @@ import org.apache.log4j.AppenderSkeleton;
|
||||
import org.apache.log4j.spi.LoggingEvent;
|
||||
|
||||
public class CustomAppender extends AppenderSkeleton {
|
||||
protected int bla = 9999;
|
||||
|
||||
public void setBla(int bla) {
|
||||
this.bla = bla;
|
||||
}
|
||||
protected int bla = 9999;
|
||||
|
||||
public void setBla(int bla) {
|
||||
this.bla = bla;
|
||||
}
|
||||
|
||||
public int getBla() {
|
||||
return bla;
|
||||
}
|
||||
public int getBla() {
|
||||
return bla;
|
||||
}
|
||||
|
||||
public boolean requiresLayout() {
|
||||
return true;
|
||||
}
|
||||
public boolean requiresLayout() {
|
||||
return true;
|
||||
}
|
||||
|
||||
public void close() {}
|
||||
public void close() {}
|
||||
|
||||
protected void append(LoggingEvent loggingEvent) {
|
||||
System.out.print(layout.format(loggingEvent));
|
||||
}
|
||||
protected void append(LoggingEvent loggingEvent) {
|
||||
System.out.print(layout.format(loggingEvent));
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user