Skip to content

Commit 573452d

Browse files
committed
Add a task to check the Javadoc on private members and fix the Javadoc errors found with it.
1 parent f5de314 commit 573452d

File tree

19 files changed

+413
-125
lines changed

19 files changed

+413
-125
lines changed

asm-commons/src/main/java/org/objectweb/asm/commons/GeneratorAdapter.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1168,6 +1168,7 @@ public void putField(final Type owner, final String name, final Type type) {
11681168
* @param opcode the instruction's opcode.
11691169
* @param type the class in which the method is defined.
11701170
* @param method the method to be invoked.
1171+
* @param itf whether the 'type' class is an interface or not.
11711172
*/
11721173
private void invokeInsn(
11731174
final int opcode, final Type type, final Method method, final boolean itf) {

asm-commons/src/main/java/org/objectweb/asm/commons/JSRInlinerAdapter.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -382,6 +382,8 @@ private void emitCode() {
382382
* @param newInstructions the instruction list to which the instantiated code must be appended.
383383
* @param newTryCatchBlocks the exception handler list to which the instantiated handlers must be
384384
* appended.
385+
* @param newLocalVariables the local variables list to which the instantiated local variables
386+
* must be appended.
385387
*/
386388
private void emitSubroutine(
387389
final Instantiation instant,

0 commit comments

Comments
 (0)