Skip to content

Commit

Permalink
editorTileMap
Browse files Browse the repository at this point in the history
  • Loading branch information
jostja committed Jun 21, 2024
1 parent 3a25d6c commit 7771dd7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/GM-TE/GMTEEditor.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -121,14 +121,14 @@ GMTEEditor class >> getTileMapFromProjectName: aName withPath: aPath [

{
#category : #'as yet unclassified',
#'squeak_changestamp' : 'JS 6/15/2024 13:04'
#'squeak_changestamp' : 'jj 6/22/2024 00:55'
}
GMTEEditor class >> privateGetEditableTileMapFromFileBinary: aFileBinary [

|aFileStream tileMap|
aFileStream := (MultiByteBinaryOrTextStream with: aFileBinary) binary reset.
tileMap := aFileStream fileInObjectAndCode.
(tileMap isKindOf: GMTEEditableTileMap) ifFalse: [^nil].
(tileMap isKindOf: GMTEEditorTileMap) ifFalse: [^nil].
^tileMap
]

Expand Down

0 comments on commit 7771dd7

Please sign in to comment.