diff --git a/Example/Sources/AppDelegate.swift b/Example/Sources/AppDelegate.swift index a148b9c..da25133 100644 --- a/Example/Sources/AppDelegate.swift +++ b/Example/Sources/AppDelegate.swift @@ -1,11 +1,3 @@ -// -// AppDelegate.swift -// RealmWrapperExample -// -// Created by DongHeeKang on 2018. 6. 30.. -// Copyright © 2018년 k-lpmg. All rights reserved. -// - import UIKit @UIApplicationMain diff --git a/Example/Sources/Cells/UserTableViewCell.swift b/Example/Sources/Cells/UserTableViewCell.swift index 589ad7c..b00e981 100644 --- a/Example/Sources/Cells/UserTableViewCell.swift +++ b/Example/Sources/Cells/UserTableViewCell.swift @@ -1,11 +1,3 @@ -// -// UserTableViewCell.swift -// RealmWrapperExample -// -// Created by DongHeeKang on 2018. 6. 30.. -// Copyright © 2018년 k-lpmg. All rights reserved. -// - import UIKit class UserTableViewCell: UITableViewCell { diff --git a/Example/Sources/DBManagers/InMemoryRealmManager.swift b/Example/Sources/DBManagers/InMemoryRealmManager.swift index 7d27f85..45780b2 100644 --- a/Example/Sources/DBManagers/InMemoryRealmManager.swift +++ b/Example/Sources/DBManagers/InMemoryRealmManager.swift @@ -1,11 +1,3 @@ -// -// InMemoryRealmManager.swift -// RealmWrapperExample -// -// Created by DongHeeKang on 2018. 6. 30.. -// Copyright © 2018년 k-lpmg. All rights reserved. -// - import RealmSwift import RealmWrapper diff --git a/Example/Sources/DBManagers/UserRealmManager.swift b/Example/Sources/DBManagers/UserRealmManager.swift index df6602d..ab4fabf 100644 --- a/Example/Sources/DBManagers/UserRealmManager.swift +++ b/Example/Sources/DBManagers/UserRealmManager.swift @@ -1,11 +1,3 @@ -// -// UserRealmManager.swift -// RealmWrapperExample -// -// Created by DongHeeKang on 2018. 6. 30.. -// Copyright © 2018년 k-lpmg. All rights reserved. -// - import RealmSwift import RealmWrapper diff --git a/Example/Sources/DBProxies/InMemoryRealmProxy.swift b/Example/Sources/DBProxies/InMemoryRealmProxy.swift index 6a015a0..9eccef8 100644 --- a/Example/Sources/DBProxies/InMemoryRealmProxy.swift +++ b/Example/Sources/DBProxies/InMemoryRealmProxy.swift @@ -1,11 +1,3 @@ -// -// InMemoryRealmProxy.swift -// RealmWrapperExample -// -// Created by DongHeeKang on 2018. 6. 30.. -// Copyright © 2018년 k-lpmg. All rights reserved. -// - import RealmWrapper struct UserInMemoryRealmProxy: RealmProxiable { diff --git a/Example/Sources/DBProxies/UserRealmProxy.swift b/Example/Sources/DBProxies/UserRealmProxy.swift index 0fce37b..1298858 100644 --- a/Example/Sources/DBProxies/UserRealmProxy.swift +++ b/Example/Sources/DBProxies/UserRealmProxy.swift @@ -1,11 +1,3 @@ -// -// UserRealmProxy.swift -// RealmWrapperExample -// -// Created by DongHeeKang on 2018. 6. 30.. -// Copyright © 2018년 k-lpmg. All rights reserved. -// - import RealmWrapper struct UserRealmProxy: RealmProxiable { diff --git a/Example/Sources/Extension/ClassName-Extension.swift b/Example/Sources/Extension/ClassName-Extension.swift index c6dd3f4..28f2f85 100644 --- a/Example/Sources/Extension/ClassName-Extension.swift +++ b/Example/Sources/Extension/ClassName-Extension.swift @@ -1,11 +1,3 @@ -// -// ClassName-Extension.swift -// RealmWrapperExample -// -// Created by DongHeeKang on 2018. 6. 30.. -// Copyright © 2018년 k-lpmg. All rights reserved. -// - import Foundation protocol ClassName { diff --git a/Example/Sources/Extension/UITableView-Extension.swift b/Example/Sources/Extension/UITableView-Extension.swift index 0f336ec..e572a33 100644 --- a/Example/Sources/Extension/UITableView-Extension.swift +++ b/Example/Sources/Extension/UITableView-Extension.swift @@ -1,11 +1,3 @@ -// -// UITableView-Extension.swift -// RealmWrapperExample -// -// Created by DongHeeKang on 2018. 6. 30.. -// Copyright © 2018년 k-lpmg. All rights reserved. -// - import UIKit extension UITableView { diff --git a/Example/Sources/Models/User.swift b/Example/Sources/Models/User.swift index f675f25..3cd2f2a 100644 --- a/Example/Sources/Models/User.swift +++ b/Example/Sources/Models/User.swift @@ -1,11 +1,3 @@ -// -// User.swift -// RealmWrapperExample -// -// Created by DongHeeKang on 2018. 6. 30.. -// Copyright © 2018년 k-lpmg. All rights reserved. -// - import Foundation import RealmSwift diff --git a/Example/Sources/ViewControllers/AddViewController.swift b/Example/Sources/ViewControllers/AddViewController.swift index 6f4c86c..9ac8bc5 100644 --- a/Example/Sources/ViewControllers/AddViewController.swift +++ b/Example/Sources/ViewControllers/AddViewController.swift @@ -1,11 +1,3 @@ -// -// AddViewController.swift -// RealmWrapperExample -// -// Created by DongHeeKang on 2018. 6. 30.. -// Copyright © 2018년 k-lpmg. All rights reserved. -// - import UIKit import RealmSwift diff --git a/Example/Sources/ViewControllers/EditViewController.swift b/Example/Sources/ViewControllers/EditViewController.swift index ab2bf43..da47f6f 100644 --- a/Example/Sources/ViewControllers/EditViewController.swift +++ b/Example/Sources/ViewControllers/EditViewController.swift @@ -1,11 +1,3 @@ -// -// EditViewController.swift -// RealmWrapperExample -// -// Created by DongHeeKang on 2018. 6. 30.. -// Copyright © 2018년 k-lpmg. All rights reserved. -// - import UIKit final class EditViewController: UIViewController { diff --git a/Example/Sources/ViewControllers/TableViewController.swift b/Example/Sources/ViewControllers/TableViewController.swift index 3c23c8e..8e39af3 100644 --- a/Example/Sources/ViewControllers/TableViewController.swift +++ b/Example/Sources/ViewControllers/TableViewController.swift @@ -1,11 +1,3 @@ -// -// TableViewController.swift -// RealmWrapperExample -// -// Created by DongHeeKang on 2018. 6. 30.. -// Copyright © 2018년 k-lpmg. All rights reserved. -// - import UIKit import RealmWrapper diff --git a/Sources/RealmManageable.swift b/Sources/RealmManageable.swift index eb5f0ab..a4e1fcb 100644 --- a/Sources/RealmManageable.swift +++ b/Sources/RealmManageable.swift @@ -1,11 +1,3 @@ -// -// RealmManageable.swift -// RealmWrapper -// -// Created by DongHeeKang on 2018. 6. 10.. -// Copyright © 2018년 k-lpmg. All rights reserved. -// - import RealmSwift import Realm.Private diff --git a/Sources/RealmProxiable.swift b/Sources/RealmProxiable.swift index 07d6eb0..16d7b85 100644 --- a/Sources/RealmProxiable.swift +++ b/Sources/RealmProxiable.swift @@ -1,11 +1,3 @@ -// -// RealmProxiable.swift -// RealmWrapper -// -// Created by DongHeeKang on 2018. 6. 10.. -// Copyright © 2018년 k-lpmg. All rights reserved. -// - import RealmSwift public protocol RealmProxiable { diff --git a/Sources/RealmQuery.swift b/Sources/RealmQuery.swift index a4cca93..1f42d03 100644 --- a/Sources/RealmQuery.swift +++ b/Sources/RealmQuery.swift @@ -1,11 +1,3 @@ -// -// RealmQuery.swift -// RealmWrapper -// -// Created by DongHeeKang on 2018. 6. 10.. -// Copyright © 2018년 k-lpmg. All rights reserved. -// - import RealmSwift public typealias RealmQueryChanged = ([IndexPath]) -> Void diff --git a/Sources/RealmWrapper.h b/Sources/RealmWrapper.h index 9bc455e..65a7dc3 100644 --- a/Sources/RealmWrapper.h +++ b/Sources/RealmWrapper.h @@ -1,11 +1,3 @@ -// -// RealmWrapper.h -// RealmWrapper -// -// Created by DongHeeKang on 2018. 6. 30.. -// Copyright © 2018년 k-lpmg. All rights reserved. -// - @import UIKit; FOUNDATION_EXPORT double RealmWrapperVersionNumber; diff --git a/Tests/RealmCRUDTests.swift b/Tests/RealmCRUDTests.swift index 919de1d..0bb08e4 100644 --- a/Tests/RealmCRUDTests.swift +++ b/Tests/RealmCRUDTests.swift @@ -1,11 +1,3 @@ -// -// RealmCRUDTests.swift -// RealmWrapperTests -// -// Created by DongHeeKang on 2018. 7. 1.. -// Copyright © 2018년 k-lpmg. All rights reserved. -// - import XCTest @testable import RealmWrapper diff --git a/Tests/RealmNotificationTests.swift b/Tests/RealmNotificationTests.swift index c107803..941f02c 100644 --- a/Tests/RealmNotificationTests.swift +++ b/Tests/RealmNotificationTests.swift @@ -1,11 +1,3 @@ -// -// RealmNotificationTests.swift -// RealmWrapperTests -// -// Created by DongHeeKang on 2018. 7. 1.. -// Copyright © 2018년 k-lpmg. All rights reserved. -// - import XCTest @testable import RealmWrapper diff --git a/Tests/RealmTransactionTests.swift b/Tests/RealmTransactionTests.swift index c4d1cce..469cc59 100644 --- a/Tests/RealmTransactionTests.swift +++ b/Tests/RealmTransactionTests.swift @@ -1,11 +1,3 @@ -// -// RealmTransactionTests.swift -// RealmWrapperTests -// -// Created by DongHeeKang on 2018. 7. 28.. -// Copyright © 2018년 k-lpmg. All rights reserved. -// - import XCTest import RealmSwift