Skip to content

Commit

Permalink
[MetaC]: Change Strings to Symbols
Browse files Browse the repository at this point in the history
Wondering if that will cut down on image size when loaded. Tally showed many strings that seem Metacello-related
  • Loading branch information
seandenigris committed Aug 28, 2024
1 parent 795645c commit 7adc65f
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,16 @@ BaselineOfExternalWebBrowser >> baseline: spec [

spec for: #'common' do: [
spec
baseline: 'OSShell' with: [
baseline: #'OSShell' with: [
spec repository: 'github://seandenigris/Pharo-Shell' ];
baseline: 'Tempfile' with: [
baseline: #'Tempfile' with: [
spec repository: 'github://seandenigris/TempfileSt' ];
package: #'ExternalWebBrowser' with: [
spec
requires: #('OSShell' 'Tempfile'). ] ].
requires: #(OSShell Tempfile). ] ].

spec for: #GToolkit do: [
spec package: 'ExternalWebBrowser-GToolkit' ]
spec package: #'ExternalWebBrowser-GToolkit' ]
]

{ #category : #accessing }
Expand Down

0 comments on commit 7adc65f

Please sign in to comment.