@@ -310,7 +310,7 @@ protected void parseComponent(ObjectNode node) {
310
310
}
311
311
} else {
312
312
throw new ConfigLoaderException ("Invalid value in component " + curComponent + ", propertylist " + propName + ", node = " + e .getValue ().toString () + "" +
313
- ", all OLCUT values must be strings, numerical types are not parsed." );
313
+ ", all OLCUT property list values must be strings, other types are not parsed." );
314
314
}
315
315
}
316
316
}
@@ -331,7 +331,7 @@ protected void parseComponent(ObjectNode node) {
331
331
mapOutput .put (mapEntry .getKey (), new SimpleProperty (mapEntry .getValue ().textValue ()));
332
332
} else {
333
333
throw new ConfigLoaderException ("Invalid value in component " + curComponent + ", propertymap " + propName + ", node = " + e .getValue ().toString () +
334
- ", all OLCUT values must be strings, numerical types are not parsed." );
334
+ ", all OLCUT property map values must be strings, other types are not parsed." );
335
335
}
336
336
}
337
337
rpd .add (propName , new MapProperty (mapOutput ));
@@ -341,7 +341,7 @@ protected void parseComponent(ObjectNode node) {
341
341
rpd .add (propName , new SimpleProperty (e .getValue ().textValue ()));
342
342
} else {
343
343
throw new ConfigLoaderException ("Invalid value in component " + curComponent + ", property " + propName + ", node = " + e .getValue ().toString () +
344
- ", all OLCUT values must be strings, numerical types are not parsed." );
344
+ ", all OLCUT property values must be strings, other types are not parsed." );
345
345
}
346
346
}
347
347
}
0 commit comments