Skip to content

Commit

Permalink
Keep stack clean
Browse files Browse the repository at this point in the history
  • Loading branch information
koppor committed Apr 12, 2023
1 parent d8af7a6 commit dd2ae2e
Showing 1 changed file with 8 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1085,7 +1085,8 @@ void requires(Set<Requires> requires) {
}
cob.invokevirtual(CD_MODULE_BUILDER,
"requires",
MTD_REQUIRES_ARRAY);
MTD_REQUIRES_ARRAY)
.pop();
}

/*
Expand Down Expand Up @@ -1129,7 +1130,8 @@ void exports(Set<Exports> exports) {
}
cob.invokevirtual(CD_MODULE_BUILDER,
"exports",
MTD_EXPORTS_ARRAY);
MTD_EXPORTS_ARRAY)
.pop();
}

/*
Expand Down Expand Up @@ -1185,7 +1187,8 @@ void opens(Set<Opens> opens) {
}
cob.invokevirtual(CD_MODULE_BUILDER,
"opens",
MTD_OPENS_ARRAY);
MTD_OPENS_ARRAY)
.pop();
}

/*
Expand Down Expand Up @@ -1254,7 +1257,8 @@ void provides(Collection<Provides> provides) {
}
cob.invokevirtual(CD_MODULE_BUILDER,
"provides",
MTD_PROVIDES_ARRAY);
MTD_PROVIDES_ARRAY)
.pop();
}

/*
Expand Down

0 comments on commit dd2ae2e

Please sign in to comment.