Skip to content

Commit

Permalink
Switched "UIManager default" usage to usage of "self"
Browse files Browse the repository at this point in the history
  • Loading branch information
timgarrels committed Jul 26, 2019
1 parent 8535efb commit 054c232
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ checkForParameterError

(ICParser responseIsParameterError: self stream lastResponse) ifTrue: [
self fatalErrorOccured: true.
UIManager default inform: 'Wrong username or password'.
self inform: 'Wrong username or password'.
^ true].

^ false
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ connectAndLoginWith: anICAccountInfo
onTimeout: [
(self fatalErrorOccured)
ifFalse: [
UIManager default inform: 'Connection could not be established'.
self inform: 'Connection could not be established'.
self fatalErrorOccured: true]]
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ login

(self checkConnected) ifFalse: [
self fatalErrorOccured: true.
UIManager default inform: 'Cant connect to the server'.
self inform: 'Cant connect to the server'.
^ false].

(self accountInfo isValid) ifFalse: [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@
"asAccountInfoDictionary" : "tg 7/15/2019 12:20",
"checkConnected" : "tg 7/10/2019 19:29",
"checkForBadRequest" : "pm 7/25/2019 17:59",
"checkForParameterError" : "pm 7/25/2019 17:59",
"checkForParameterError" : "tg 7/26/2019 11:43",
"checkLoggedIn" : "tg 7/15/2019 12:44",
"close" : "AR 5/31/2016 11:12",
"connect" : "tg 7/15/2019 13:27",
"connectAndLoginWith:" : "tg 7/15/2019 12:28",
"connectAndLoginWith:" : "tg 7/26/2019 11:43",
"connectWith:" : "tg 7/18/2019 23:00",
"createEmailsWith:andName:and:" : "tg 7/19/2019 09:18",
"currentFolderName" : "C.G. 7/25/2018 13:50",
Expand All @@ -52,7 +52,7 @@
"loadEmailsFromMaildir" : "pm 6/3/2019 18:33",
"loggedIn" : "pm 6/9/2019 13:07",
"loggedIn:" : "js 5/15/2016 13:09",
"login" : "pm 7/23/2019 14:53",
"login" : "tg 7/26/2019 11:43",
"logout" : "tg 7/25/2019 12:42",
"maildirDiffFetchHeadersFrom:" : "tg 7/15/2019 13:31",
"maildirDiffFetchHeadersFrom:to:" : "pm 7/24/2019 21:18",
Expand Down

0 comments on commit 054c232

Please sign in to comment.