Skip to content

Commit

Permalink
Prepare for release 4.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
mpkorstanje committed Jan 18, 2019
1 parent a7ba049 commit 04541f8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 13 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Expand Up @@ -2,7 +2,7 @@
Please see [CONTRIBUTING.md](https://github.com/cucumber/cucumber/blob/master/CONTRIBUTING.md) on how to contribute to Cucumber.


## [4.2.2-SNAPSHOT](https://github.com/cucumber/cucumber-jvm/compare/v4.2.2...master) (In Git)
## [4.2.3-SNAPSHOT](https://github.com/cucumber/cucumber-jvm/compare/v4.2.2...master) (In Git)

### Added

Expand All @@ -15,7 +15,7 @@ Please see [CONTRIBUTING.md](https://github.com/cucumber/cucumber/blob/master/CO
### Fixed


## [4.2.2-SNAPSHOT](https://github.com/cucumber/cucumber-jvm/compare/v4.2.1...v4.2.2)
## [4.2.](https://github.com/cucumber/cucumber-jvm/compare/v4.2.1...v4.2.2)

### Fixed
* [Core] Fix class loading on Windows ([#1541](https://github.com/cucumber/cucumber-jvm/pull/1529) M.P. Korstanje)
Expand Down
14 changes: 3 additions & 11 deletions core/src/main/java/cucumber/runtime/RuntimeOptions.java
Expand Up @@ -22,8 +22,6 @@
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.Reader;
import java.net.URI;
import java.net.URISyntaxException;
import java.util.ArrayList;
import java.util.Collections;
import java.util.HashMap;
Expand Down Expand Up @@ -141,7 +139,7 @@ private void parse(List<String> args) {
List<Pattern> parsedNameFilters = new ArrayList<Pattern>();
Map<String, List<Long>> parsedLineFilters = new HashMap<String, List<Long>>();
List<String> parsedFeaturePaths = new ArrayList<String>();
List<URI> parsedGlue = new ArrayList<>();
List<String> parsedGlue = new ArrayList<String>();
ParsedPluginData parsedPluginData = new ParsedPluginData();
List<String> parsedJunitOptions = new ArrayList<String>();

Expand Down Expand Up @@ -281,14 +279,8 @@ private static String read(Resource resource) {
}
}

private URI parseGlue(String gluePath) {
try {
return new URI(gluePath);
} catch (URISyntaxException e) {

}


private String parseGlue(String gluePath) {
return convertFileSeparatorToForwardSlash(gluePath);
}

private void printUsage() {
Expand Down

0 comments on commit 04541f8

Please sign in to comment.