File tree Expand file tree Collapse file tree
src/main/java/eu/mihosoft/vrl/v3d Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -3783,7 +3783,7 @@ public CSG setUserDefinedName(String res) {
37833783 return this ;
37843784 }
37853785 public CSG setUserDefinedNameIfMissing (String res ) {
3786- if (!isUserDefinedName () )
3786+ if (!isUserDefinedName ())
37873787 getStorage ().set ("UserDefinedName" , res );
37883788 return this ;
37893789 }
@@ -3800,11 +3800,11 @@ public boolean isUserDefinedName() {
38003800 }
38013801 public String getUserDefinedName () {
38023802 Optional <String > o = getStorage ().getValue ("UserDefinedName" );
3803- if ( o .isPresent ())
3803+ if ( o .isPresent ())
38043804 return o .get ();
38053805 return getName ();
38063806 }
3807-
3807+
38083808 public CSG addIsGroupResult (String res ) {
38093809 if (!getStorage ().getValue ("GroupResult" ).isPresent ()) {
38103810 getStorage ().set ("GroupResult" , new HashSet <String >());
You can’t perform that action at this time.
0 commit comments