Skip to content

Commit

Permalink
#124 fixed again. method got stripped
Browse files Browse the repository at this point in the history
Code that "held" the method got lost.
  • Loading branch information
Eric Winger authored and Eric Winger committed Sep 4, 2018
1 parent 8464908 commit a11d31a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 0 additions & 1 deletion sources/JadeitePreferences.cls
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ transcriptEnabled: booleanString session: session
"file syntax - transcriptEnabled false"

| answeringService boolean |
false ifTrue:[self transcriptEnabled: booleanString session: session]. "to avoid getting stripped in runtime"
boolean := booleanString = 'true'.
answeringService := RowanAnsweringService new.
(answeringService isTranscriptInstalledIn: session) == boolean
Expand Down
4 changes: 3 additions & 1 deletion sources/Rowan UI Base.pax
Original file line number Diff line number Diff line change
Expand Up @@ -756,7 +756,9 @@ postLoadClientPreferences
perform: message
with: nextLine subStrings last
with: self]]]
ensure: [file close]!
ensure: [^file close].
"unreachable code"
[JadeitePreferences new transcriptEnabled: nil session: nil]. "to avoid getting stripped in runtime" !

postLoadServerPreferences
self
Expand Down

0 comments on commit a11d31a

Please sign in to comment.