Skip to content

Commit

Permalink
Fixed a compilation error
Browse files Browse the repository at this point in the history
  • Loading branch information
ali-ince committed Sep 4, 2018
1 parent cd1db7b commit 7f84a5a
Showing 1 changed file with 5 additions and 1 deletion.
Expand Up @@ -146,7 +146,11 @@ private static String createNode( Driver driver )

private static Config configWithBoltEnabled()
{
return Config.defaults().augment( singletonMap( "dbms.connector.bolt.enabled", TRUE ) );
Config config = Config.defaults();

config.augment( singletonMap( "dbms.connector.bolt.enabled", TRUE ) );

return config;
}

private static class CustomCommunityEditionModule extends CommunityEditionModule
Expand Down

0 comments on commit 7f84a5a

Please sign in to comment.