mirror of
https://github.com/Ranchero-Software/NetNewsWire.git
synced 2025-01-15 11:06:06 +01:00
Make code formatting in AttachmentsTable match current style.
This commit is contained in:
parent
bed1620ae4
commit
c6907b73f9
@ -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
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user