diff options
author | Sven Gothel <[email protected]> | 2012-11-22 06:39:20 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2012-11-22 06:39:20 +0100 |
commit | 49416164a4729b1b7e234841ba9be48b9aa90830 (patch) | |
tree | 3ca433f39dd4886de493ccd7046d83809540c980 /plugins/awt | |
parent | d0737cc4a34a41ad9bdac7de379250cacbf55a1d (diff) | |
parent | 5c894f5055dfdbf571afee3057e46b9912aedb9b (diff) |
Diffstat (limited to 'plugins/awt')
-rw-r--r-- | plugins/awt/build.xml | 4 | ||||
-rw-r--r-- | plugins/awt/src/net/java/games/input/AWTEnvironmentPlugin.java | 5 |
2 files changed, 7 insertions, 2 deletions
diff --git a/plugins/awt/build.xml b/plugins/awt/build.xml index 431ad63..3a87342 100644 --- a/plugins/awt/build.xml +++ b/plugins/awt/build.xml @@ -7,7 +7,7 @@ </target> <target depends="init" name="compile"> - <javac debug="true" deprecation="true" destdir="classes" source="1.4" target="1.4" srcdir="src"> + <javac debug="true" deprecation="true" destdir="classes" source="1.5" target="1.5" srcdir="src"> <classpath> <pathelement location="../../coreAPI/bin/jinput-core.jar"/> <pathelement location="../../lib/jutils.jar"/> @@ -28,7 +28,7 @@ <mkdir dir="apidocs"/> <javadoc packagenames="net.java.games.input.*" destdir="apidocs" - additionalparam="-source 1.4" + additionalparam="-source 1.5" link="../../../coreAPI/apidocs"> <sourcepath> <pathelement location="src"/> diff --git a/plugins/awt/src/net/java/games/input/AWTEnvironmentPlugin.java b/plugins/awt/src/net/java/games/input/AWTEnvironmentPlugin.java index b6b062a..d675cd7 100644 --- a/plugins/awt/src/net/java/games/input/AWTEnvironmentPlugin.java +++ b/plugins/awt/src/net/java/games/input/AWTEnvironmentPlugin.java @@ -48,4 +48,9 @@ public class AWTEnvironmentPlugin extends ControllerEnvironment implements Plugi public boolean isSupported() { return true; } + + @Override + public Controller[] rescanControllers() { + throw new UnsupportedOperationException("Not supported yet."); + } } |