removed some trash that Xcode's refactoring seems to leave behind now

This commit is contained in:
Maurice Parker 2020-04-18 15:08:57 -05:00
parent dd94212c9f
commit 41d14b4b46
3 changed files with 2 additions and 64 deletions

View File

@ -1,35 +0,0 @@
//
// Tweet.swift
// Account
//
// Created by Maurice Parker on 4/16/20.
// Copyright © 2020 Ranchero Software, LLC. All rights reserved.
//
import Foundation
final class TwitterStatus: Codable {
let createdAt: Date?
let idStr: String?
let fullText: String?
let displayTextRange: [Int]?
let user: TwitterUser
let truncated: Bool
let retweeted: Bool
let retweetedStatus: TwitterStatus?
let quotedStatus: TwitterStatus?
enum CodingKeys: String, CodingKey {
case createdAt = "created_at"
case idStr = "id_str"
case fullText = "full_text"
case displayTextRange = "display_text_range"
case user = "user"
case truncated = "truncated"
case retweeted = "retweeted"
case retweetedStatus = "retweeted_status"
case quotedStatus = "quoted_status"
}
}

View File

@ -57,10 +57,10 @@ private extension TwitterMedia {
func renderPhotoAsHTML() -> String {
if let httpsMediaURL = httpsMediaURL {
return "<img src=\"\(httpsMediaURL)\">"
return "<figure><img src=\"\(httpsMediaURL)\"></figure>"
}
if let mediaURL = mediaURL {
return "<img src=\"\(mediaURL)\">"
return "<figure><img src=\"\(mediaURL)\"></figure>"
}
return ""
}

View File

@ -1,27 +0,0 @@
//
// TwitterMentions.swift
// Account
//
// Created by Maurice Parker on 4/18/20.
// Copyright © 2020 Ranchero Software, LLC. All rights reserved.
//
import Foundation
struct TwitterMention {
let name: String?
let indices: [Int]?
let screenName: String?
let expandedURL: String?
let idStr: String?
enum CodingKeys: String, CodingKey {
case name = "url"
case indices = "indices"
case screenName = "screen_name"
case expandedURL = "expandedURL"
case idStr = "idStr"
}
}