Skip to content

Commit

Permalink
Cgm: finalize 2 methods
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed May 22, 2024
1 parent a3b113f commit 9d5c5d7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
The com.jme3 software packages are Copyright (c) 2009-2019 jMonkeyEngine
The maud software packages are Copyright (c) 2017-2023 Stephen Gold
The maud software packages are Copyright (c) 2017-2024 Stephen Gold

All rights reserved.

Expand Down
6 changes: 3 additions & 3 deletions src/main/java/maud/model/cgm/Cgm.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Copyright (c) 2017-2023, Stephen Gold
Copyright (c) 2017-2024 Stephen Gold
All rights reserved.
Redistribution and use in source and binary forms, with or without
Expand Down Expand Up @@ -1034,7 +1034,7 @@ public <T extends Light> List<String> listLightNames(Class<T> lightType) {
* @param lightType superclass of Light to search for
* @return a new list of pre-existing lights
*/
<T extends Light> List<T> listLights(Class<T> lightType) {
final <T extends Light> List<T> listLights(Class<T> lightType) {
List<T> result = MyLight.listLights(rootSpatial, lightType, null);
return result;
}
Expand Down Expand Up @@ -1071,7 +1071,7 @@ public <T extends Control> List<String> listSgcNames(Class<T> sgcType) {
* @param sgcType superclass of Control to search for
* @return a new list of pre-existing S-G controls
*/
<T extends Control> List<T> listSgcs(Class<T> sgcType) {
final <T extends Control> List<T> listSgcs(Class<T> sgcType) {
List<T> sgcList = MySpatial.listControls(rootSpatial, sgcType, null);
return sgcList;
}
Expand Down

0 comments on commit 9d5c5d7

Please sign in to comment.