# HG changeset patch # User Dennis Concepción Martín <66180929+denniscm190@users.noreply.github.com> # Date 1613585933 -3600 # Node ID 26d69711ea667c190bc53921466dced40010ad37 # Parent f44d84affd002b564a2f330fde425ac9c41e037e Change name Core Data diff -r f44d84affd00 -r 26d69711ea66 LazyBear.xcodeproj/project.pbxproj --- a/LazyBear.xcodeproj/project.pbxproj Wed Feb 17 19:14:30 2021 +0100 +++ b/LazyBear.xcodeproj/project.pbxproj Wed Feb 17 19:18:53 2021 +0100 @@ -200,6 +200,7 @@ /* Begin XCBuildConfiguration section */ 95B04EBC2521236A000AD27F /* Debug */ = { isa = XCBuildConfiguration; + baseConfigurationReference = 95FF4EA925DD94430013319E /* Sandbox.xcconfig */; buildSettings = { ALWAYS_SEARCH_USER_PATHS = NO; CLANG_ANALYZER_NONNULL = YES; @@ -261,6 +262,7 @@ }; 95B04EBD2521236A000AD27F /* Release */ = { isa = XCBuildConfiguration; + baseConfigurationReference = 95FF4EAA25DD94720013319E /* Production.xcconfig */; buildSettings = { ALWAYS_SEARCH_USER_PATHS = NO; CLANG_ANALYZER_NONNULL = YES; diff -r f44d84affd00 -r 26d69711ea66 LazyBear.xcodeproj/project.xcworkspace/xcuserdata/dennis.xcuserdatad/UserInterfaceState.xcuserstate Binary file LazyBear.xcodeproj/project.xcworkspace/xcuserdata/dennis.xcuserdatad/UserInterfaceState.xcuserstate has changed diff -r f44d84affd00 -r 26d69711ea66 lazybear/LazyBear.xcdatamodeld/LazyBear.xcdatamodel/contents --- a/lazybear/LazyBear.xcdatamodeld/LazyBear.xcdatamodel/contents Wed Feb 17 19:14:30 2021 +0100 +++ b/lazybear/LazyBear.xcdatamodeld/LazyBear.xcdatamodel/contents Wed Feb 17 19:18:53 2021 +0100 @@ -1,10 +1,10 @@ - + - + \ No newline at end of file diff -r f44d84affd00 -r 26d69711ea66 lazybear/Persistence.swift --- a/lazybear/Persistence.swift Wed Feb 17 19:14:30 2021 +0100 +++ b/lazybear/Persistence.swift Wed Feb 17 19:18:53 2021 +0100 @@ -14,9 +14,9 @@ let result = PersistenceController(inMemory: true) let viewContext = result.container.viewContext for _ in 0..<2 { - let savedCompanies = SavedCompanies(context: viewContext) - savedCompanies.name = "apple inc" - savedCompanies.symbol = "aapl" + let watchlistCompanies = WatchlistCompanies(context: viewContext) + watchlistCompanies.name = "apple inc" + watchlistCompanies.symbol = "aapl" } do { try viewContext.save()