remove region

This commit is contained in:
nub31
2025-05-16 22:15:02 +02:00
parent 99e4543e74
commit 5a6c56c5c2

View File

@@ -376,8 +376,6 @@ public class TypeChecker
return fieldType;
}
#region Type Helper Methods
private static bool AreTypesCompatible(NubType sourceType, NubType targetType)
{
return targetType.Equals(NubPrimitiveType.Any) || sourceType.Equals(targetType);
@@ -407,6 +405,4 @@ public class TypeChecker
return false;
}
}
#endregion
}