aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorelias <[email protected]>2006-12-26 09:18:46 +0000
committerelias <[email protected]>2006-12-26 09:18:46 +0000
commitaa50955ed08a78db24140cc16bdc10a1ecfc4a9b (patch)
tree54f5521c2550130bba9a94df23ab4b25686adacf /plugins
parent7671e79527ec1f56a845c9f689bf09cc0c0643fc (diff)
Linux: Bounds check fixes (again)
git-svn-id: file:///home/sven/projects/JOGL/git-svn/svn-server-sync/jinput/trunk@176 e343933a-64c8-49c5-92b1-88f2ce3e89e8
Diffstat (limited to 'plugins')
-rw-r--r--plugins/linux/src/java/net/java/games/input/LinuxNativeTypesMap.java3
1 files changed, 0 insertions, 3 deletions
diff --git a/plugins/linux/src/java/net/java/games/input/LinuxNativeTypesMap.java b/plugins/linux/src/java/net/java/games/input/LinuxNativeTypesMap.java
index 8ea012e..509c108 100644
--- a/plugins/linux/src/java/net/java/games/input/LinuxNativeTypesMap.java
+++ b/plugins/linux/src/java/net/java/games/input/LinuxNativeTypesMap.java
@@ -760,7 +760,6 @@ class LinuxNativeTypesMap {
}
if(retval == null) {
retval = Component.Identifier.Axis.SLIDER_VELOCITY;
- INSTANCE.relAxesIDs[nativeID] = retval;
}
return retval;
}
@@ -779,7 +778,6 @@ class LinuxNativeTypesMap {
}
if(retval == null) {
retval = Component.Identifier.Axis.SLIDER;
- INSTANCE.absAxesIDs[nativeID] = retval;
}
return retval;
}
@@ -798,7 +796,6 @@ class LinuxNativeTypesMap {
}
if(retval == null) {
retval = Component.Identifier.Key.UNKNOWN;
- INSTANCE.buttonIDs[nativeID] = retval;
}
return retval;
}