Skip to content

Commit

Permalink
Use Protocol unclassified whenever possible
Browse files Browse the repository at this point in the history
Fix #9803
  • Loading branch information
astares committed Aug 23, 2021
1 parent 5c6f8f9 commit 40048d4
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
5 changes: 2 additions & 3 deletions src/Kernel/Categorizer.class.st
Expand Up @@ -79,9 +79,8 @@ Categorizer class >> documentation [

{ #category : #'class initialization' }
Categorizer class >> initialize [
" self initialize "

Default := 'as yet unclassified' asSymbol.

Default := Protocol unclassified.
NullCategory := 'no messages' asSymbol.
]

Expand Down
2 changes: 1 addition & 1 deletion src/Ring-Core/RGBehavior.class.st
Expand Up @@ -234,7 +234,7 @@ RGBehavior >> announceDefinitionChangeDuring: aBlock [
{ #category : #accessing }
RGBehavior >> asYetUnclassifiedProtocolName [

^ 'as yet unclassified' asSymbol
^ Protocol unclassified
]

{ #category : #testing }
Expand Down
2 changes: 1 addition & 1 deletion src/Ring-Core/RGObject.class.st
Expand Up @@ -16,7 +16,7 @@ Class {
{ #category : #'instance creation' }
RGObject class >> asYetUnclassifiedProtocolName [

^ 'as yet unclassified' asSymbol
^ Protocol unclassified
]

{ #category : #'instance creation' }
Expand Down
2 changes: 1 addition & 1 deletion src/System-Changes/ChangeSet.class.st
Expand Up @@ -1111,7 +1111,7 @@ ChangeSet >> methodsWithoutClassifications [

| slips notClassified |

notClassified := {'as yet unclassified' asSymbol. #all}.
notClassified := { Protocol unclassified. #all}.
slips := OrderedCollection new.
self changedClasses do:
[:aClass |
Expand Down

0 comments on commit 40048d4

Please sign in to comment.