Skip to content

Commit 8d93bfa

Browse files
committed
Code cleanup: no unnecessary tabs, space and final dots
Fix SeasideSt#152
1 parent 2e0f80d commit 8d93bfa

File tree

134 files changed

+185
-185
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

134 files changed

+185
-185
lines changed

repository/Grease-Core.package/GRCodec.class/class/forEncoding..st

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ instance creation
22
forEncoding: aString
33
"Answer a new codec instance for the given encoding name. Raise an WAUnsupportedEncodingError if the encoding name is not supported by this image."
44

5-
self allSubclassesDo: [ :each |
5+
self allSubclassesDo: [ :each |
66
(each supportsEncoding: aString)
77
ifTrue: [ ^ each basicForEncoding: aString ] ].
88
^ self unsupportedEncoding: aString
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
conversion
22
decoderFor: aReadStream
3-
"Wrap aReadStream with an decoder for the codec of the receiver. Answer a read stream that delegates to and shares the state of aReadStream."
4-
3+
"Wrap aReadStream with an decoder for the codec of the receiver. Answer a read stream that delegates to and shares the state of aReadStream."
4+
55
self subclassResponsibility
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
conversion
22
encoderFor: aWriteStream
33
"Wrap aWriteStream with an encoder for the codec of the receiver. Answer a write stream that delegates to and shares the state of aWriteStream."
4-
4+
55
self subclassResponsibility
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
instance creation
2-
receiver: anObject selector: aSymbol
3-
^ self basicNew
2+
receiver: anObject selector: aSymbol
3+
^ self basicNew
44
initializeWithReceiver: anObject
55
message: (GRUnboundMessage selector: aSymbol);
66
yourself
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
instance creation
2-
receiver: anObject selector: aSymbol arguments: anArray
3-
^ self basicNew
2+
receiver: anObject selector: aSymbol arguments: anArray
3+
^ self basicNew
44
initializeWithReceiver: anObject
55
message: (GRBoundMessage selector: aSymbol arguments: anArray);
66
yourself
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
accessing
22
argumentCount
33
"Answer the number of arguments that must be provided to the receiver when sending it."
4-
4+
55
^ message argumentCount
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
delegation
22
argumentCount
33
"Answer the number of arguments that must be provided when sending this message."
4-
4+
55
self subclassResponsibility

repository/Grease-Core.package/GRDelayedSendMessage.class/instance/valueFor.withArguments..st

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ delegation
22
valueFor: receiver withArguments: anArray
33
"Send the message to receiver with the arguments in anArray. Answer the result.
44
Signal an error if the number of arguments does not match the selector."
5-
5+
66
^ self basicPerformFor: receiver withArguments: (self mergeArguments: anArray)

repository/Grease-Core.package/GRDelayedSendMessage.class/instance/valueFor.withPossibleArguments..st

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ valueFor: receiver withPossibleArguments: anArray
55

66
| allArguments |
77
allArguments := self mergeArguments: anArray.
8-
8+
99
^ allArguments size < selector numArgs
1010
ifTrue: [ self invalidArgumentCount ]
1111
ifFalse: [ self basicPerformFor: receiver withArguments: (allArguments first: selector numArgs) ]
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
instance creation
22
block: aBlock next: aPrinter
3-
^ self new
3+
^ self new
44
block: aBlock;
55
next: aPrinter;
66
yourself

0 commit comments

Comments
 (0)