Skip to content

Commit

Permalink
fixed directory choice bug
Browse files Browse the repository at this point in the history
  • Loading branch information
nick-bessin committed May 17, 2021
1 parent b4a8ad5 commit e3e3e64
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
saveJson
writeJsonToFile: aJsonString with: aDirectory
| outputStream |
aDirectory
ifNotNil: [
outputStream := StandardFileStream newFileNamed: aDirectory, '.json'.
aJsonString storeOn: outputStream
]

outputStream := StandardFileStream newFileNamed: aDirectory, '.json'.
aJsonString storeOn: outputStream.

Original file line number Diff line number Diff line change
Expand Up @@ -75,4 +75,4 @@
"updateInformationText:" : "DM 8/4/2020 16:18",
"windowReference" : "DM 8/4/2020 13:19",
"windowReference:" : "DM 8/4/2020 13:19",
"writeJsonToFile:with:" : "MH 5/15/2021 10:51" } }
"writeJsonToFile:with:" : "NB 5/15/2021 11:40" } }

0 comments on commit e3e3e64

Please sign in to comment.