Skip to content

Commit

Permalink
Removes System.out debug call.
Browse files Browse the repository at this point in the history
  • Loading branch information
christianpoitras committed Dec 6, 2016
1 parent f12de00 commit 5dc7d2a
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
Expand Up @@ -204,7 +204,6 @@ protected Configuration newConfiguration(Environment environment) {
*/
@Override
public Configuration get() {
System.out.println(lazyLoadingEnabled);
final Configuration configuration = newConfiguration(environment);
configuration.setLazyLoadingEnabled(lazyLoadingEnabled);
configuration.setAggressiveLazyLoading(aggressiveLazyLoading);
Expand Down Expand Up @@ -257,7 +256,6 @@ public Configuration get() {
} finally {
ErrorContext.instance().reset();
}
System.out.println(configuration.isLazyLoadingEnabled());

return configuration;
}
Expand Down
1 change: 0 additions & 1 deletion src/test/java/org/mybatis/guice/GuiceTestRunner.java
Expand Up @@ -78,7 +78,6 @@ protected Properties createTestProperties() {
myBatisProperties.setProperty("JDBC.username", "sa");
myBatisProperties.setProperty("JDBC.password", "");
myBatisProperties.setProperty("JDBC.autoCommit", "false");
myBatisProperties.setProperty("JDBC.autoCommit", "false");
return myBatisProperties;
}
}

0 comments on commit 5dc7d2a

Please sign in to comment.