summaryrefslogtreecommitdiff
path: root/systems/_asset/test/src
diff options
context:
space:
mode:
Diffstat (limited to 'systems/_asset/test/src')
-rw-r--r--systems/_asset/test/src/lib.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/systems/_asset/test/src/lib.rs b/systems/_asset/test/src/lib.rs
index 4aad777..4b62028 100644
--- a/systems/_asset/test/src/lib.rs
+++ b/systems/_asset/test/src/lib.rs
@@ -13,8 +13,6 @@ pub struct FooData {
}
impl RWData<FooData> for FooData {
- type DataType = FooData;
-
async fn read(path: &PathBuf) -> Result<FooData, DataReadError> {
let content = tokio::fs::read_to_string(path)
.await