Skip to content

Commit

Permalink
Old namespace.
Browse files Browse the repository at this point in the history
  • Loading branch information
wasabii committed Aug 13, 2024
1 parent 2aa126b commit 5577eac
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/IKVM.Runtime/JNI/JNIVM.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Jeroen Frijters
using System.Collections.Generic;
using System.Text;

using IKVM.ByteCode.Encoding;
using IKVM.ByteCode.Text;
using IKVM.Runtime.Extensions;

namespace IKVM.Runtime.JNI
Expand Down
4 changes: 2 additions & 2 deletions src/IKVM.Runtime/Java/Externs/sun/misc/Unsafe.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1697,11 +1697,11 @@ public static int pageSize(object self)
/// </summary>
/// <param name="buffer"></param>
/// <returns></returns>
static IKVM.ByteCode.Encoding.ClassFile ReadClass(byte[] buffer)
static IKVM.ByteCode.Decoding.ClassFile ReadClass(byte[] buffer)
{
try
{
return IKVM.ByteCode.Encoding.ClassFile.Read(buffer);
return IKVM.ByteCode.Decoding.ClassFile.Read(buffer);
}
catch (InvalidClassMagicException)
{
Expand Down
2 changes: 1 addition & 1 deletion src/IKVM.Util/Jar/JarFileExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using System.Linq;

using IKVM.ByteCode;
using IKVM.ByteCode.Reading;
using IKVM.ByteCode.Decoding;
using IKVM.Util.Modules;

using static IKVM.Util.Jar.JarFileUtil;
Expand Down

0 comments on commit 5577eac

Please sign in to comment.