Skip to content

Commit ce4ffbd

Browse files
authored
Update BitReader.cs
1 parent 94f1241 commit ce4ffbd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

MLAPI/NetworkingManagerComponents/Binary/BitReader.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ public object ReadObjectPacked(Type type)
129129
return ReadCharPacked();
130130
if (type.IsEnum)
131131
return ReadInt32Packed();
132-
if(typeof(IBitWritable).IsAssignableFrom(type))
132+
if (typeof(IBitWritable).IsAssignableFrom(type))
133133
{
134134
object instance = Activator.CreateInstance(type);
135135
((IBitWritable)instance).Read(this.source);

0 commit comments

Comments
 (0)