File tree Expand file tree Collapse file tree 3 files changed +6
-7
lines changed
src/main/java/org/scm4j/commons Expand file tree Collapse file tree 3 files changed +6
-7
lines changed Original file line number Diff line number Diff line change 1- package org .scm4j .commons . coords ;
1+ package org .scm4j .commons ;
22
3- import org .scm4j .commons .Version ;
4-
5- public interface ICoords {
3+ public interface Coords {
64
75 String getGroupId ();
86
Original file line number Diff line number Diff line change 22
33import org .apache .commons .lang3 .StringUtils ;
44import org .scm4j .commons .CommentedString ;
5+ import org .scm4j .commons .Coords ;
56import org .scm4j .commons .Version ;
67
7- public class CoordsGradle implements ICoords {
8+ public class CoordsGradle implements Coords {
89
910 private final String sourceStr ;
1011 private final String artifactId ;
@@ -17,7 +18,6 @@ public class CoordsGradle implements ICoords {
1718
1819 public CoordsGradle (String coordsString ) {
1920 sourceStr = coordsString ;
20-
2121 CommentedString cs = new CommentedString (coordsString );
2222 commentStr = cs .getComment ();
2323 coordsStringNoComment = cs .getStrNoComment ();
Original file line number Diff line number Diff line change 22
33import org .apache .commons .lang3 .StringUtils ;
44import org .scm4j .commons .CommentedString ;
5+ import org .scm4j .commons .Coords ;
56import org .scm4j .commons .Version ;
67
7- public class CoordsMaven implements ICoords {
8+ public class CoordsMaven implements Coords {
89
910 private final String sourceStr ;
1011 private final String artifactId ;
You can’t perform that action at this time.
0 commit comments