HHH-16498 - Removing (when needed) trailing chars after stripping arguments

This commit is contained in:
Cedomir Igaly 2023-05-09 08:47:06 +02:00 committed by Christian Beikov
parent 43f0ed4855
commit d933ad8594
1 changed files with 1 additions and 1 deletions

View File

@ -222,6 +222,6 @@ class ColumnDefinitions {
private static String stripArgs(String string) { private static String stripArgs(String string) {
int i = string.indexOf('('); int i = string.indexOf('(');
return i>0 ? string.substring(0,i) : string; return i>0 ? string.substring(0,i).trim() : string;
} }
} }