Skip to content

Commit

Permalink
Removed extra spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
pvince committed Nov 15, 2016
1 parent fbe4370 commit ebb2e97
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/java/hudson/scm/SSCMUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public static String getServerFromURL(String URL)
* @param URL ex. sscm://server:4900//branch//Mainline/Path/To/Repository
* @return returns the port (ex. 4900)
*/
public static String getPortFromURL(String URL)
public static String getPortFromURL(String URL)
{
Matcher changeMatcher = URI_PATTERN.matcher(URL);

Expand All @@ -67,7 +67,7 @@ public static String getPortFromURL(String URL)
* @param URL ex. sscm://server:4900//branch//Mainline/Path/To/Repository
* @return returns the port (ex. 4900)
*/
public static String getBranchFromURL(String URL)
public static String getBranchFromURL(String URL)
{
Matcher changeMatcher = URI_PATTERN.matcher(URL);

Expand All @@ -89,7 +89,7 @@ public static String getBranchFromURL(String URL)
* @param URL ex. sscm://server:4900//branch//Mainline/Path/To/Repository
* @return returns the port (ex. 4900)
*/
public static String getRepositoryFromURL(String URL)
public static String getRepositoryFromURL(String URL)
{
Matcher changeMatcher = URI_PATTERN.matcher(URL);

Expand Down

0 comments on commit ebb2e97

Please sign in to comment.