Rename MFTSQLite3Database default database location method.

Commit
ee87a5df1a26f1da1af3bf1fc44bea5fa63df9b7
Author
Marius Peter <marius.peter@tutanota.com>
Author date
Committer
Marius Peter <marius.peter@tutanota.com>
Committer date
Changed files
src/MyFitnessTracker/MFTSQLite3Database.class.st
index eda615fd..7758c1d1 100644..100644
@@ -14,7 +14,7 @@
14 14 { #category : #'as yet unclassified' }
15 15 MFTSQLite3Database class >> defaultConnection [
16 16
17 Removed: ^ self newFromDefault connection
17 Added: ^ self newOnDefaultLocation connection
18 18 ]
19 19
20 20 { #category : #accessing }
@@ -138,7 +138,7 @@
138 138 ]
139 139
140 140 { #category : #'instance creation' }
141 Removed: MFTSQLite3Database class >> newFromDefault [
141 Added: MFTSQLite3Database class >> newOnDefaultLocation [
142 142
143 143 ^ self on: defaultLocation
144 144 ]
src/MyFitnessTracker/MFTSession.class.st
index 4df2e21e..e477f403 100644..100644
@@ -43,7 +43,7 @@
43 43 | now |
44 44 now := DateAndTime now asUTC rounded.
45 45 "Reflect the login in the database"
46 Removed: self db: MFTSQLite3Database newFromDefault.
46 Added: self db: MFTSQLite3Database newOnDefaultLocation.
47 47 self db connection open.
48 48 self db login: aMFTUser atDateAndTime: now.
49 49 "Reflect the login in the session's user"