File tree Expand file tree Collapse file tree 2 files changed +2
-10
lines changed Expand file tree Collapse file tree 2 files changed +2
-10
lines changed Original file line number Diff line number Diff line change @@ -11,11 +11,7 @@ extension Store {
1111 in: FileManager . SearchPathDomainMask. userDomainMask,
1212 appropriateFor: nil ,
1313 create: true )
14- return try Store (
15- directoryPath: directory. path,
16- maxDbSizeInKByte: 500 ,
17- fileMode: 0o755 ,
18- maxReaders: 10 )
14+ return try Store ( directoryPath: directory. path)
1915 }
2016}
2117
Original file line number Diff line number Diff line change @@ -6,11 +6,7 @@ extension Store {
66 /// Creates a new ObjectBox.Store in a temporary directory.
77 static func createStoreInTemporaryDirectory( ) throws -> Store {
88 let directory = try newTemporaryDirectory ( ) . path
9- return try Store (
10- directoryPath: directory,
11- maxDbSizeInKByte: 500 ,
12- fileMode: 0o755 ,
13- maxReaders: 10 )
9+ return try Store ( directoryPath: directory)
1410 }
1511}
1612
You can’t perform that action at this time.
0 commit comments