Make code formatting in AuthorsTable match current style.

This commit is contained in:
Brent Simmons 2019-07-08 22:11:24 -07:00
parent 1d2ea8a4af
commit bed1620ae4
1 changed files with 2 additions and 4 deletions

View File

@ -1,6 +1,6 @@
// //
// AuthorsTable.swift // AuthorsTable.swift
// Database // NetNewsWire
// //
// Created by Brent Simmons on 7/13/17. // Created by Brent Simmons on 7/13/17.
// Copyright © 2017 Ranchero Software. All rights reserved. // Copyright © 2017 Ranchero Software. All rights reserved.
@ -24,14 +24,12 @@ final class AuthorsTable: DatabaseRelatedObjectsTable {
var cache = DatabaseObjectCache() var cache = DatabaseObjectCache()
init(name: String) { init(name: String) {
self.name = name self.name = name
} }
// MARK: DatabaseRelatedObjectsTable // MARK: - DatabaseRelatedObjectsTable
func objectWithRow(_ row: FMResultSet) -> DatabaseObject? { func objectWithRow(_ row: FMResultSet) -> DatabaseObject? {
if let author = Author(row: row) { if let author = Author(row: row) {
return author as DatabaseObject return author as DatabaseObject
} }