Address CI Errors

This commit is contained in:
InusualZ
2020-10-05 20:16:41 -04:00
parent a190653683
commit 704c56285c
2 changed files with 2 additions and 5 deletions

View File

@@ -6,7 +6,7 @@
/// <summary> /// <summary>
/// An interface for copying token /// An interface for copying token
/// </summary> /// </summary>
public interface IObjectCopier internal interface IObjectCopier
{ {
/// <summary> /// <summary>
/// Copy the token to the destination stream /// Copy the token to the destination stream

View File

@@ -98,10 +98,7 @@
case ObjectToken _: case ObjectToken _:
{ {
throw new NotSupportedException("Copying a Object Token is not supported");
// This is because, since we don't write token directly to the stream. So we can't know the offset.
// The token would be invalid. Although I don't think the copy of an object token would ever happen
throw new NotSupportedException("Copying a Object token is not supported");
} }
} }