소스 검색

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());
         }
     }