-
Notifications
You must be signed in to change notification settings - Fork 1
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
yoon
committed
Jan 28, 2020
1 parent
6c57df5
commit 9b2b71e
Showing
4 changed files
with
52 additions
and
34 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,2 @@ | ||
arguments= | ||
auto.sync=false | ||
build.scans.enabled=false | ||
connection.gradle.distribution=GRADLE_DISTRIBUTION(WRAPPER) | ||
connection.project.dir= | ||
eclipse.preferences.version=1 | ||
gradle.user.home= | ||
java.home= | ||
jvm.arguments= | ||
offline.mode=false | ||
override.workspace.settings=true | ||
show.console.view=true | ||
show.executions.view=true |
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
28 changes: 28 additions & 0 deletions
28
src/main/java/hgu/csee/isel/alinew/szz/model/PathRevision.java
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 |
---|---|---|
@@ -0,0 +1,28 @@ | ||
package hgu.csee.isel.alinew.szz.model; | ||
|
||
import org.eclipse.jgit.revwalk.RevCommit; | ||
|
||
public class PathRevision { | ||
private String path; | ||
private RevCommit commit; | ||
|
||
public PathRevision(String path, RevCommit commit) { | ||
super(); | ||
this.path = path; | ||
this.commit = commit; | ||
} | ||
|
||
public String getPath() { | ||
return path; | ||
} | ||
public void setPath(String path) { | ||
this.path = path; | ||
} | ||
public RevCommit getCommit() { | ||
return commit; | ||
} | ||
public void setCommit(RevCommit commit) { | ||
this.commit = commit; | ||
} | ||
|
||
} |