Skip to content
This repository has been archived by the owner on Oct 21, 2023. It is now read-only.

Commit

Permalink
Fix nit (indent)
Browse files Browse the repository at this point in the history
  • Loading branch information
koppor committed Jul 1, 2023
1 parent 3368302 commit dad33c8
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -687,9 +687,9 @@ private void genModuleDescriptorsMethod(ClassBuilder clb) {
for (int index = 0; index < moduleInfos.size(); index++) {
ModuleInfo minfo = moduleInfos.get(index);
new ModuleDescriptorBuilder(cob,
minfo.descriptor(),
minfo.packages(),
index).build();
minfo.descriptor(),
minfo.packages(),
index).build();
}
cob.aload(MD_VAR)
.areturn();
Expand Down Expand Up @@ -757,9 +757,9 @@ private void genModuleDescriptorsMethod(ClassBuilder clb) {
for (int j = 0; j < moduleInfosPackage.size(); j++) {
ModuleInfo minfo = moduleInfosPackage.get(j);
new ModuleDescriptorBuilder(cob,
minfo.descriptor(),
minfo.packages(),
globalCount[0]).build();
minfo.descriptor(),
minfo.packages(),
globalCount[0]).build();
globalCount[0]++;
}

Expand Down

0 comments on commit dad33c8

Please sign in to comment.