Use comma instead of pipe (better in URL path)
This commit is contained in:
@@ -379,8 +379,7 @@ class FunctionCreatorConfiguration {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
FunctionRegistration<Object> registration = new FunctionRegistration<Object>(
|
FunctionRegistration<Object> registration = new FunctionRegistration<Object>(
|
||||||
bean).names(
|
bean, FunctionProperties.functionName(counter.getAndIncrement()));
|
||||||
FunctionProperties.functionName(counter.getAndIncrement()));
|
|
||||||
if (this.runner != null) {
|
if (this.runner != null) {
|
||||||
if (this.runner.containsBean(FunctionInspector.class.getName())) {
|
if (this.runner.containsBean(FunctionInspector.class.getName())) {
|
||||||
Object inspector = this.runner
|
Object inspector = this.runner
|
||||||
|
|||||||
@@ -82,7 +82,7 @@ public class FunctionProperties {
|
|||||||
for (int i = 0; i <= StringUtils.countOccurrencesOf(name, ","); i++) {
|
for (int i = 0; i <= StringUtils.countOccurrencesOf(name, ","); i++) {
|
||||||
names.add("function" + i);
|
names.add("function" + i);
|
||||||
}
|
}
|
||||||
return StringUtils.collectionToDelimitedString(names, "|");
|
return StringUtils.collectionToDelimitedString(names, ",");
|
||||||
}
|
}
|
||||||
|
|
||||||
public static String functionName(int value) {
|
public static String functionName(int value) {
|
||||||
|
|||||||
Reference in New Issue
Block a user