Skip to content
Snippets Groups Projects
Commit 84bb21b2 authored by Dominique Marcadet's avatar Dominique Marcadet
Browse files

use camelCase for make_explicit_links

parent b8685e59
No related branches found
No related tags found
1 merge request!6Resolve "path to main class is wrong in pom.xml"
Pipeline #1259 passed
......@@ -72,7 +72,7 @@ public class RiseClipseValidatorSCL {
if( args.length == 0 ) usage();
boolean make_explicit_links = false;
boolean makeExplicitLinks = false;
boolean displayCopyright = true;
int posFiles = 0;
......@@ -86,7 +86,7 @@ public class RiseClipseValidatorSCL {
console.setLevel( IRiseClipseConsole.VERBOSE_LEVEL );
}
else if( "--make-explicit-links".equals( args[i] ) ) {
make_explicit_links = true;
makeExplicitLinks = true;
}
else if( "--do-not-display-copyright".equals( args[i] ) ) {
displayCopyright = false;
......@@ -125,7 +125,7 @@ public class RiseClipseValidatorSCL {
prepare( oclFiles, nsdFiles );
for( int i = 0; i < sclFiles.size(); ++i ) {
run( make_explicit_links, sclFiles.get( i ));
run( makeExplicitLinks, sclFiles.get( i ));
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment