Trim vestigial middleware method

This commit is contained in:
Lucien Greathouse
2019-11-19 12:55:55 -08:00
parent 246fd5f6c4
commit 72342f3118

View File

@@ -1,5 +1,3 @@
use std::path::{Path, PathBuf};
use rbx_dom_weak::{RbxId, RbxTree};
use crate::{
@@ -22,8 +20,4 @@ pub trait SnapshotMiddleware {
fn from_instance(_tree: &RbxTree, _id: RbxId) -> SnapshotFileResult {
None
}
fn change_affects_paths(path: &Path) -> Vec<PathBuf> {
vec![path.to_path_buf()]
}
}