Skip to content

Commit

Permalink
Fix Compression package extensions
Browse files Browse the repository at this point in the history
Fix #8210
  • Loading branch information
astares committed Dec 31, 2020
1 parent f92e709 commit 824da6b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Compression/String.extension.st
@@ -1,6 +1,6 @@
Extension { #name : #String }

{ #category : #'*compression' }
{ #category : #'*Compression' }
String >> lastIndexOfPKSignature: aSignature [
"Answer the last index in me where aSignature (4 bytes long) occurs, or 0 if not found"
| a b c d |
Expand All @@ -18,7 +18,7 @@ String >> lastIndexOfPKSignature: aSignature [
^0
]

{ #category : #'*compression' }
{ #category : #'*Compression' }
String >> unzipped [
| magic1 magic2 |
magic1 := (self at: 1) asInteger.
Expand Down

0 comments on commit 824da6b

Please sign in to comment.