Skip to content

Commit

Permalink
Merge pull request #19 from argv-minus-one/remove-debugging-print-sta…
Browse files Browse the repository at this point in the history
…tements

Scala mojos spam lots of "processing child" messages
  • Loading branch information
jsuereth committed Jun 30, 2013
2 parents 4115bdc + 2af0904 commit d05f9bd
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,6 @@ class ScalaConfigurationConverter extends AbstractConfigurationConverter {
listener : ConfigurationListener) : AnyRef = {

var retValue = fromExpression( configuration, expressionEvaluator, someType );
System.err.println("Result of expression evaluation: " + retValue);
if ( retValue == null ) {
try {
// it is a "composite" - we compose it from its children. It does not have a value of its own
Expand Down Expand Up @@ -95,12 +94,10 @@ class ScalaConfigurationConverter extends AbstractConfigurationConverter {
listener : ConfigurationListener) {
//TODO - Inject into component the configuration properties.
val items = configuration.getChildCount();
System.err.println("Processing Configuration for child elements");
for ( i <- 0 until items ) {
val childConfiguration = configuration.getChild( i );

val elementName = childConfiguration.getName();
System.err.println("Processing child [" + elementName + "]");

//TODO - Make sure the var setter is working correctly and we're passing the correct information to it.
//TODO - Make sure we can handle "property object" configuration items.
Expand Down

0 comments on commit d05f9bd

Please sign in to comment.