Skip to content

Commit

Permalink
1134 Replace #replaceAll:with: with #copyReplaceAll:with:
Browse files Browse the repository at this point in the history
Fixes #1134
  • Loading branch information
marschall committed Aug 25, 2019
1 parent 4ba832d commit 6969c38
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ addFileAt: aPath relativeToRootDirectory: relativeRootDirectory

(relativeFilepath first = pathSeparator first)
ifTrue: [ relativeFilepath := relativeFilepath allButFirst ].
relativeFilepath := relativeFilepath replaceAll: pathSeparator first with: $/.

relativeFilepath := relativeFilepath copyReplaceAll: pathSeparator with: '/'.

self addFileNamed: relativeFilepath
contents: (GRPlatform current
Expand Down

0 comments on commit 6969c38

Please sign in to comment.