Skip to content

Commit

Permalink
fix JavaDoc
Browse files Browse the repository at this point in the history
  • Loading branch information
Volker authored and Volker committed Jun 10, 2018
1 parent ecd61dc commit e6093fa
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions src/de/inetsoftware/classparser/ClassFile.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Copyright 2011 - 2017 Volker Berlin (i-net software)
Copyright 2011 - 2018 Volker Berlin (i-net software)
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -165,7 +165,7 @@ public FieldInfo getField( String name ) {
* The access flags of the class.
* http://docs.oracle.com/javase/specs/jvms/se7/html/jvms-4.html#jvms-4.1-200-E
* http://docs.oracle.com/javase/specs/jvms/se5.0/html/ClassFile.doc.html#23242
* @see #isInterface()
* @see java.lang.Class#isInterface()
*/
public int getAccessFlags() {
return accessFlags;
Expand Down
4 changes: 2 additions & 2 deletions src/de/inetsoftware/classparser/Code.java
Original file line number Diff line number Diff line change
Expand Up @@ -149,10 +149,10 @@ public boolean startWithSuperInit( ConstantClass superClass ){

/**
* Check if the code only contains the default constructor code:
* <code><pre>
* <pre><code>
* super.&lt;init&gt;;
* return;
* </pre></code>
* </code></pre>
* In this case the constructor will not be printed
* @param superClass
* @return
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ interface InstructionOpcodes {

/**
* If the value on the stack is true then the if block is executed. <br>
* sequence: IF <return type> <br>
* sequence: IF {return type} <br>
* return type: can be void (0x40) <br>
* stack: remove one i32 value and compare it with 0 <br>
*/
Expand All @@ -47,7 +47,7 @@ interface InstructionOpcodes {

/**
* Break a block/loop <br>
* sequence: BR <call deep> <br>
* sequence: BR {call deep} <br>
* call deep: How many blocks are break. 0 means the current block<br>
* stack: no change <br>
*/
Expand Down

0 comments on commit e6093fa

Please sign in to comment.