File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
org.omg.sysml.interactive/src/org/omg/sysml/interactive Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -489,7 +489,7 @@ protected String publish(String name) {
489489 * @return output of the command
490490 */
491491 public String load (Map <String , String > parameters ) {
492- counter ++;
492+ this . counter ++;
493493
494494 if (parameters .containsKey (HELP_KEY )) {
495495 return SysMLInteractiveHelp .getLoadHelp ();
@@ -503,6 +503,9 @@ public String load(Map<String, String> parameters) {
503503 return "ERROR:Branch name and id cannot be provided at the same time\n " ;
504504 }
505505
506+ System .out .println ("API base path: " + apiBasePath );
507+ System .out .println ();
508+
506509 final ProjectRepository repository = new ProjectRepository (apiBasePath );
507510 final RemoteProject project ;
508511
@@ -541,8 +544,6 @@ private String load(RemoteBranch branch) {
541544 return "ERROR:Branch doesn't exist\n " ;
542545 }
543546
544- System .out .println ("API base path: " + apiBasePath );
545- System .out .println ();
546547 System .out .println ("Selected branch " + branch .getName () + " (" + branch .getRemoteId ().toString () + ")" );
547548
548549 Revision headRevision = branch .getHeadRevision ();
You can’t perform that action at this time.
0 commit comments