Remove vestigial backwards syncing functionality.

This functionality won't be present until the refactor in 0.5.0
This commit is contained in:
Lucien Greathouse
2018-05-26 16:44:25 -07:00
parent 40c41b4400
commit e7fe4ac3ec
4 changed files with 3 additions and 37 deletions

View File

@@ -3,7 +3,7 @@ use std::collections::HashMap;
use regex::Regex;
use core::Route;
use plugin::{Plugin, PluginChain, TransformFileResult, RbxChangeResult, FileChangeResult};
use plugin::{Plugin, PluginChain, TransformFileResult, FileChangeResult};
use rbx::{RbxInstance, RbxValue};
use vfs::VfsItem;
@@ -117,8 +117,4 @@ impl Plugin for ScriptPlugin {
FileChangeResult::Pass
}
}
fn handle_rbx_change(&self, _route: &Route, _rbx_item: &RbxInstance) -> RbxChangeResult {
RbxChangeResult::Pass
}
}