NetNewsWire/Evergreen/Inspector/NothingInspectorViewController.swift

25 lines
417 B
Swift
Raw Normal View History

2018-01-20 21:48:27 -08:00
//
// NothingInspectorViewController.swift
// Evergreen
//
// Created by Brent Simmons on 1/20/18.
// Copyright © 2018 Ranchero Software. All rights reserved.
//
import AppKit
2018-01-20 22:36:17 -08:00
final class NothingInspectorViewController: NSViewController, Inspector {
2018-01-20 21:48:27 -08:00
2018-01-20 22:36:17 -08:00
let isFallbackInspector = true
var objects: [Any]?
func canInspect(_ objects: [Any]) -> Bool {
return true
}
func willEndInspectingObjects() {
}
2018-01-20 21:48:27 -08:00
}