Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

22002 Cleanup System-Platforms #1445

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/System-Platforms/KeyboardKey.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Class {
'UnixVirtualKeyTable',
'WindowsVirtualKeyTable'
],
#category : #'System-Platforms'
#category : #'System-Platforms-Utilities'
}

{ #category : #'class initialization' }
Expand Down Expand Up @@ -661,7 +661,7 @@ KeyboardKey >> printOn: aStream [
nextPutAll: name;
nextPutAll: ' code: (';
nextPutAll: value asString;
nextPutAll: ')'.
nextPutAll: ')'
]

{ #category : #'initialize-release' }
Expand Down
2 changes: 1 addition & 1 deletion src/System-Platforms/MacOSPlatform.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ I am a an object representing a Mac OS (pre OSX) platform. Use myself to access
Class {
#name : #MacOSPlatform,
#superclass : #OSPlatform,
#category : #'System-Platforms'
#category : #'System-Platforms-Mac'
}

{ #category : #testing }
Expand Down
2 changes: 1 addition & 1 deletion src/System-Platforms/MacOSXPlatform.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ OSPlatform current.
Class {
#name : #MacOSXPlatform,
#superclass : #MacOSPlatform,
#category : #'System-Platforms'
#category : #'System-Platforms-Mac'
}

{ #category : #testing }
Expand Down
5 changes: 4 additions & 1 deletion src/System-Platforms/ManifestSystemPlatforms.class.st
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
"
Support for different OS platforms
"
Class {
#name : #ManifestSystemPlatforms,
#superclass : #PackageManifest,
#category : #'System-Platforms'
#category : #'System-Platforms-Manifest'
}

{ #category : #'meta-data - dependency analyser' }
Expand Down
10 changes: 8 additions & 2 deletions src/System-Platforms/OSPlatform.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Class {
#classVars : [
'Current'
],
#category : #'System-Platforms'
#category : #'System-Platforms-Base'
}

{ #category : #accessing }
Expand Down Expand Up @@ -45,7 +45,13 @@ OSPlatform class >> determineActivePlatform [

]

{ #category : #'initialize-release' }
{ #category : #example }
OSPlatform class >> example [
<example>
Smalltalk os current inspect
]

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

Expand Down
2 changes: 1 addition & 1 deletion src/System-Platforms/Unix32Platform.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ urce: 22651600
Class {
#name : #Unix32Platform,
#superclass : #UnixPlatform,
#category : #'System-Platforms'
#category : #'System-Platforms-Unix'
}

{ #category : #testing }
Expand Down
2 changes: 1 addition & 1 deletion src/System-Platforms/Unix64Platform.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ OSPlatform current.
Class {
#name : #Unix64Platform,
#superclass : #UnixPlatform,
#category : #'System-Platforms'
#category : #'System-Platforms-Unix'
}

{ #category : #testing }
Expand Down
2 changes: 1 addition & 1 deletion src/System-Platforms/UnixPlatform.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ OSPlatform current.
Class {
#name : #UnixPlatform,
#superclass : #OSPlatform,
#category : #'System-Platforms'
#category : #'System-Platforms-Unix'
}

{ #category : #testing }
Expand Down
2 changes: 1 addition & 1 deletion src/System-Platforms/Win32Platform.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ OSPlatform current.
Class {
#name : #Win32Platform,
#superclass : #WinPlatform,
#category : #'System-Platforms'
#category : #'System-Platforms-Windows'
}

{ #category : #testing }
Expand Down
2 changes: 1 addition & 1 deletion src/System-Platforms/Win64Platform.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ OSPlatform current.
Class {
#name : #Win64Platform,
#superclass : #WinPlatform,
#category : #'System-Platforms'
#category : #'System-Platforms-Windows'
}

{ #category : #testing }
Expand Down
2 changes: 1 addition & 1 deletion src/System-Platforms/WinPlatform.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ OSPlatform current.
Class {
#name : #WinPlatform,
#superclass : #OSPlatform,
#category : #'System-Platforms'
#category : #'System-Platforms-Windows'
}

{ #category : #testing }
Expand Down