Skip to content

Commit

Permalink
Merge pull request #21 from juliendelplanque/fix-server-classes-category
Browse files Browse the repository at this point in the history
fix-server-classes-category
  • Loading branch information
gcotelli authored Nov 16, 2019
2 parents 1d9ca6e + 65ee869 commit 3c87bbd
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion src/JRPC-Server-Core/JRPCAbstractHandler.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Class {
#instVars : [
'methodName'
],
#category : #'JRPC-Server-Core-JRPC-Server-Core'
#category : #'JRPC-Server-Core'
}

{ #category : #accessing }
Expand Down
2 changes: 1 addition & 1 deletion src/JRPC-Server-Core/JRPCBlockHandler.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Class {
#instVars : [
'block'
],
#category : #'JRPC-Server-Core-JRPC-Server-Core'
#category : #'JRPC-Server-Core'
}

{ #category : #accessing }
Expand Down
2 changes: 1 addition & 1 deletion src/JRPC-Server-Core/JRPCInvalidParameters.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ I am an error raised when the parameters of the method called are invalid.
Class {
#name : #JRPCInvalidParameters,
#superclass : #JRPCError,
#category : #'JRPC-Server-Core-JRPC-Server-Core'
#category : #'JRPC-Server-Core'
}

{ #category : #converting }
Expand Down
2 changes: 1 addition & 1 deletion src/JRPC-Server-Core/JRPCMessageProcessor.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Class {
#instVars : [
'handlersByName'
],
#category : #'JRPC-Server-Core-JRPC-Server-Core'
#category : #'JRPC-Server-Core'
}

{ #category : #'handlers management' }
Expand Down
2 changes: 1 addition & 1 deletion src/JRPC-Server-Core/JRPCMessageSendHandler.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Class {
'receiver',
'messageSelector'
],
#category : #'JRPC-Server-Core-JRPC-Server-Core'
#category : #'JRPC-Server-Core'
}

{ #category : #evaluation }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Class {
#instVars : [
'handler'
],
#category : #'JRPC-Server-Core-JRPC-Server-Core'
#category : #'JRPC-Server-Core'
}

{ #category : #'instance creation' }
Expand Down
2 changes: 1 addition & 1 deletion src/JRPC-Server-Core/JRPCNonExistentHandler.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ I am an error raised when the handler required does not exist.
Class {
#name : #JRPCNonExistentHandler,
#superclass : #JRPCError,
#category : #'JRPC-Server-Core-JRPC-Server-Core'
#category : #'JRPC-Server-Core'
}

{ #category : #converting }
Expand Down
2 changes: 1 addition & 1 deletion src/JRPC-Server-Core/JRPCPragmaHandler.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ If no method or multiple methods have <jrpc> pragma, an error is raised.
Class {
#name : #JRPCPragmaHandler,
#superclass : #JRPCMessageSendHandler,
#category : #'JRPC-Server-Core-JRPC-Server-Core'
#category : #'JRPC-Server-Core'
}

{ #category : #private }
Expand Down
2 changes: 1 addition & 1 deletion src/JRPC-Server-Core/JRPCServer.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Class {
#instVars : [
'messageProcessor'
],
#category : #'JRPC-Server-Core-JRPC-Server-Core'
#category : #'JRPC-Server-Core'
}

{ #category : #'handlers management' }
Expand Down

0 comments on commit 3c87bbd

Please sign in to comment.