Quellcode durchsuchen

Update exception message

Wyatt Gillette vor 3 Monaten
Ursprung
Commit
826c86060e
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  1. 1 1
      jme3-core/src/main/java/com/jme3/scene/control/LightControl.java

+ 1 - 1
jme3-core/src/main/java/com/jme3/scene/control/LightControl.java

@@ -137,7 +137,7 @@ public class LightControl extends AbstractControl {
                 break;
             default:
                 throw new IllegalArgumentException(
-                        "LightControl does not support unknown Light type: " + light.getType());
+                        "Unsupported Light type: " + light.getType());
         }
     }