Fix some javadoc issues

This commit is contained in:
Ben Gruver
2014-12-28 14:14:19 -08:00
committed by Connor Tumbleson
parent 0153548c30
commit 026d353fc7
8 changed files with 10 additions and 11 deletions

View File

@ -48,7 +48,6 @@ public class BaseDexReader<T extends BaseDexBuffer> {
public int getOffset() { return offset; }
public void setOffset(int offset) { this.offset = offset; }
/** {@inheritDoc} */
public int readSleb128() {
int end = offset;
int currentByteValue;

View File

@ -48,8 +48,7 @@ public interface DebugItem {
int getDebugItemType();
/**
* The code address
* @return
* @return The code address
*/
int getCodeAddress();
}

View File

@ -268,8 +268,7 @@ public class AnnotatedBytes {
}
/**
* Gets the width of the right side containing the annotations
* @return
* @return The width of the right side containing the annotations
*/
public int getAnnotationWidth() {
int leftWidth = 8 + (hexCols * 2) + (hexCols / 2);