replaced a thrown exception with a logger warning
git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@10712 75d07b2b-3a1a-0410-a2c5-0572b91ccdca
This commit is contained in:
parent
b143904913
commit
82324a385e
@ -600,7 +600,8 @@ public class InputManager implements RawInputListener {
|
|||||||
public void deleteMapping(String mappingName) {
|
public void deleteMapping(String mappingName) {
|
||||||
Mapping mapping = mappings.remove(mappingName);
|
Mapping mapping = mappings.remove(mappingName);
|
||||||
if (mapping == null) {
|
if (mapping == null) {
|
||||||
throw new IllegalArgumentException("Cannot find mapping: " + mappingName);
|
//throw new IllegalArgumentException("Cannot find mapping: " + mappingName);
|
||||||
|
logger.log(Level.WARNING, "Cannot find mapping to be removed, skipping: {0}", mappingName);
|
||||||
}
|
}
|
||||||
|
|
||||||
ArrayList<Integer> triggers = mapping.triggers;
|
ArrayList<Integer> triggers = mapping.triggers;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user