瀏覽代碼

Update exception message

Wyatt Gillette 3 月之前
父節點
當前提交
826c86060e
共有 1 個文件被更改,包括 1 次插入1 次删除
  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());
         }
     }