-
Notifications
You must be signed in to change notification settings - Fork 175
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
16 changed files
with
26 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,20 +26,19 @@ | |
|
||
/** | ||
* Result of making directories in SCM. | ||
* | ||
* | ||
* @author <a href="mailto:[email protected]">Maria Odea Ching</a> | ||
* | ||
*/ | ||
public class MkdirScmResult | ||
extends ScmResult | ||
{ | ||
|
||
private static final long serialVersionUID = -8717329738246682608L; | ||
|
||
private String revision; | ||
|
||
private List<ScmFile> createdDirs; | ||
|
||
public MkdirScmResult( ScmResult scmResult ) | ||
{ | ||
super( scmResult ); | ||
|
@@ -56,11 +55,11 @@ public MkdirScmResult( String commandLine, String revision ) | |
|
||
this.revision = revision; | ||
} | ||
|
||
public MkdirScmResult( String commandLine, List<ScmFile> createdDirs ) | ||
{ | ||
this( commandLine, null, null, true ); | ||
|
||
this.createdDirs = createdDirs; | ||
} | ||
|
||
|
@@ -70,19 +69,19 @@ public MkdirScmResult( String revision, ScmResult result ) | |
|
||
this.revision = revision; | ||
} | ||
|
||
public MkdirScmResult( List<ScmFile> createdDirs, ScmResult result ) | ||
{ | ||
super( result ); | ||
|
||
this.createdDirs = createdDirs; | ||
} | ||
|
||
public String getRevision() | ||
{ | ||
return revision; | ||
} | ||
|
||
public List<ScmFile> getCreatedDirs() | ||
{ | ||
return createdDirs; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters