Skip to content
This repository has been archived by the owner on Jan 25, 2022. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
[FIXED JENKINS-12094][FIXED JENKINS-23071] Upgrading jRuby version to…
… 1.7.16 fixes both of these issues, [FIXED JENKINS-25782] Replaced ASCII spaces with space characters, removed some unused imports
  • Loading branch information
josh-stupplebeen committed Nov 25, 2014
1 parent 604add6 commit aec6c98
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions java-runtime/src/main/java/ruby/RubyPlugin.java
Expand Up @@ -22,7 +22,6 @@
import java.io.File;
import java.io.IOException;
import java.net.URL;
import java.net.URLDecoder;
import java.util.ArrayList;
import java.util.Collection;

Expand Down Expand Up @@ -201,7 +200,7 @@ private void unzipRubyClasses() throws Exception {

// The above URL representation will fail in a windows environment due to URL encoded
// spaces in paths being escaped as ASCII "%20" characters.
// These can be manually changed to spaces for the paths to resolve below.
// These must be manually changed to spaces for the paths to resolve below.
// For the moment only spaces were identified as being converted to ASCII characters
// so they were replaced manually.
// If more character conversions are identified in the future please replace the manual
Expand Down

0 comments on commit aec6c98

Please sign in to comment.