performance optimizing

This commit is contained in:
Volker Berlin 2022-06-18 19:44:59 +02:00
parent 062e2aeb47
commit 4bb7f8f555
No known key found for this signature in database
GPG Key ID: 988423EF815BE4CB

View File

@ -1399,11 +1399,11 @@ public class TypeManager {
}
public List<AnyType> getParams() {
return Collections.unmodifiableList( params );
return params;
}
public List<AnyType> getResults() {
return Collections.unmodifiableList( results );
return results;
}
public void setName( String name ) {