Skip to content

Commit

Permalink
Remove sysout message during prism operation
Browse files Browse the repository at this point in the history
  • Loading branch information
mederly committed Sep 6, 2019
1 parent 74aaf9c commit 60b02bf
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -1143,7 +1143,7 @@ public void applyDefinition(@NotNull PrismContainerDefinition<C> containerDef, b
// --> we should either skip this, or fetch the fresh definition from the prism context
ComplexTypeDefinition freshCtd = prismContext.getSchemaRegistry().findComplexTypeDefinitionByType(complexTypeDefinition.getTypeName());
if (freshCtd != null) {
System.out.println("Using " + freshCtd + " instead of " + definitionToUse);
//System.out.println("Using " + freshCtd + " instead of " + definitionToUse);
definitionToUse = freshCtd;
}
} else {
Expand Down

0 comments on commit 60b02bf

Please sign in to comment.