Skip to content

Commit

Permalink
Remove unused -propowner flag from the ConsistencyCheckTool documente…
Browse files Browse the repository at this point in the history
…d argument list
  • Loading branch information
chrisvest committed Jun 1, 2016
1 parent adb5cd2 commit 8bc93d8
Showing 1 changed file with 6 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@
public class ConsistencyCheckTool
{
private static final String CONFIG = "config";
private static final String PROP_OWNER = "propowner";
private static final String VERBOSE = "v";

public static void main( String[] args ) throws IOException
Expand Down Expand Up @@ -84,7 +83,7 @@ public static ConsistencyCheckService.Result runConsistencyCheckTool( String[] a

ConsistencyCheckService.Result run( String... args ) throws ToolFailureException, IOException
{
Args arguments = Args.withFlags( PROP_OWNER, VERBOSE ).parse( args );
Args arguments = Args.withFlags( VERBOSE ).parse( args );

File storeDir = determineStoreDirectory( arguments );
Config tuningConfiguration = readConfiguration( arguments );
Expand Down Expand Up @@ -167,12 +166,11 @@ private Config readConfiguration( Args arguments ) throws ToolFailureException
private String usage()
{
return joinAsLines(
jarUsage( getClass(), "[-propowner] [-config <neo4j.conf>] [-v] <storedir>" ),
"WHERE: -propowner also check property owner consistency (more time consuming)",
" -config <filename> is the location of an optional properties file",
" containing tuning parameters for the consistency check",
" -v produce execution output",
" <storedir> is the path to the store to check"
jarUsage( getClass(), " [-config <neo4j.conf>] [-v] <storedir>" ),
"WHERE: -config <filename> Is the location of an optional properties file",
" containing tuning parameters for the consistency check.",
" -v Produce execution output.",
" <storedir> Is the path to the store to check."
);
}

Expand Down

0 comments on commit 8bc93d8

Please sign in to comment.