diff --git a/source/Cosmos/Cosmos.Sys.Plugs/VFS/FileInfoImpl.cs b/source/Cosmos/Cosmos.Sys.Plugs/VFS/FileInfoImpl.cs index d1133f170..9d3c14c0a 100644 --- a/source/Cosmos/Cosmos.Sys.Plugs/VFS/FileInfoImpl.cs +++ b/source/Cosmos/Cosmos.Sys.Plugs/VFS/FileInfoImpl.cs @@ -13,7 +13,7 @@ namespace Cosmos.Sys.Plugs public static class FileInfoImpl { //[PlugMethod(Signature = "System_Void__System_IO_FileInfo__ctor_System_String_")] - public static void Cbtor( + public static void Ctor( FileInfo aThis, [FieldAccess(Name = "$$Storage$$")] ref FilesystemEntry aStorage, String aFile diff --git a/source2/IL2PCU/Cosmos.IL2CPU/ILScanner.cs b/source2/IL2PCU/Cosmos.IL2CPU/ILScanner.cs index cdc6b0b14..e232d9b1f 100644 --- a/source2/IL2PCU/Cosmos.IL2CPU/ILScanner.cs +++ b/source2/IL2PCU/Cosmos.IL2CPU/ILScanner.cs @@ -15,8 +15,6 @@ namespace Cosmos.IL2CPU { // how it compares objects. public class HashcodeComparer: IEqualityComparer { - #region IEqualityComparer Members - public bool Equals(T x, T y) { return x.GetHashCode() == y.GetHashCode(); } @@ -25,8 +23,8 @@ namespace Cosmos.IL2CPU { return obj.GetHashCode(); } - #endregion } + public class ILScanner : IDisposable { protected ILReader mReader; protected Assembler mAsmblr;