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