Skip to content

Commit

Permalink
cleaning comments and code
Browse files Browse the repository at this point in the history
  • Loading branch information
adri09070 committed Aug 3, 2023
1 parent 4e1ddb4 commit d676a34
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
5 changes: 2 additions & 3 deletions src/Chest/ChestPresenter.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ ChestPresenter class >> showInspector [
{ #category : #accessing }
ChestPresenter class >> showInspector: anObject [

^ ShowInspector := anObject
ShowInspector := anObject
]

{ #category : #accessing }
Expand All @@ -161,7 +161,7 @@ ChestPresenter class >> showPlayground [
{ #category : #accessing }
ChestPresenter class >> showPlayground: anObject [

^ ShowPlayground := anObject
ShowPlayground := anObject
]

{ #category : #visiting }
Expand Down Expand Up @@ -295,7 +295,6 @@ ChestPresenter >> hideInspector [
add: showPlaygroundContainer;
add: showInspectorContainer expand: false;
yourself.
"showInspectorContainer remove: inspector."
showInspectorButton icon: (self application iconNamed: #disable)
]

Expand Down
2 changes: 1 addition & 1 deletion src/Chest/ChestTableWithContentPresenter.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -513,7 +513,7 @@ ChestTableWithContentPresenter >> makeChestContentsTable [
addColumn: (SpStringTableColumn
title: 'Class'
evaluated: [ :association |
association value class printString ])
association value class name ])
beExpandable;
items: #( ) asOrderedCollection;
beResizable;
Expand Down

0 comments on commit d676a34

Please sign in to comment.