Make code formatting in AttachmentsTable match current style.

This commit is contained in:
Brent Simmons 2019-07-08 22:13:30 -07:00
parent bed1620ae4
commit c6907b73f9

View File

@ -1,6 +1,6 @@
// //
// AttachmentsTable.swift // AttachmentsTable.swift
// Database // NetNewsWire
// //
// Created by Brent Simmons on 7/15/17. // Created by Brent Simmons on 7/15/17.
// Copyright © 2017 Ranchero Software. All rights reserved. // Copyright © 2017 Ranchero Software. All rights reserved.
@ -17,14 +17,12 @@ final class AttachmentsTable: 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 attachment = Attachment(row: row) { if let attachment = Attachment(row: row) {
return attachment as DatabaseObject return attachment as DatabaseObject
} }