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
1 changed files with 2 additions and 4 deletions

View File

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