-
-
Notifications
You must be signed in to change notification settings - Fork 356
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
Remember package refactor17388 #17414
base: Pharo13
Are you sure you want to change the base?
Remember package refactor17388 #17414
Conversation
#category : 'Calypso-SystemTools-Core-Contexts', | ||
#package : 'Calypso-SystemTools-Core', | ||
#tag : 'Contexts' | ||
} | ||
|
||
{ #category : 'as yet unclassified' } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The method needs to be classified
{ #category : 'as yet unclassified' } | ||
ClySystemBrowserContext class >> rememberedPackage: aPackage [ | ||
|
||
RememberedPackage := aPackage |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I recommend you to format your methods before compiling (Cmd + shift + f)
Pay attention |
Alexis you should use a class variable (sharedVariables: and not an instance variables of the metaclass. Please read the Pharo by example chapter so that you get it right because knowing the difference it important. |
Fixes: #17388
I created a class variable to remember lastselected package, the next time its searched by default
Here it is remembered :