Skip to content

Commit

Permalink
Fix from rename
Browse files Browse the repository at this point in the history
  • Loading branch information
wasabii committed Aug 18, 2024
1 parent 73bce3e commit f9de90a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/IKVM.Util/Jar/JarFileExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ static ModuleInfo GetModuleInfoFromClass(JarFile jar)

using var s = e.Open();
using var c = ClassFile.Read(s);
if ((c.AccessFlags & AccessFlag.ACC_MODULE) != 0)
if ((c.AccessFlags & AccessFlag.Module) != 0)
{
var a = c.Attributes.FirstOrDefault(i => i.IsNotNil && i.Name.IsNotNil && c.Constants.Get(i.Name).Value == AttributeName.Module);
if (a.IsNotNil)
Expand Down

0 comments on commit f9de90a

Please sign in to comment.