Remove unused IStorage.GetPath

This commit is contained in:
ousttrue
2021-10-26 19:33:24 +09:00
parent ddcb5af0e3
commit 04a58dc02c
2 changed files with 0 additions and 27 deletions

View File

@@ -24,11 +24,6 @@ namespace UniGLTF
{
return m_bytes;
}
public string GetPath(string url)
{
return null;
}
}
/// <summary>
@@ -52,18 +47,6 @@ namespace UniGLTF
;
return new ArraySegment<byte>(bytes);
}
public string GetPath(string url)
{
if (url.FastStartsWith("data:"))
{
return null;
}
else
{
return Path.Combine(m_root, url).Replace("\\", "/");
}
}
}
/// <summary>
@@ -82,10 +65,5 @@ namespace UniGLTF
{
return _gltf.buffers[0].GetBytes();
}
public string GetPath(string url)
{
return null;
}
}
}

View File

@@ -381,10 +381,5 @@ namespace UniGLTF.Zip
throw new NotImplementedException(found.CompressionMethod.ToString());
}
public string GetPath(string url)
{
return null;
}
}
}