Skip to content

Commit 6dfef33

Browse files
Fix style issues
1 parent c077c02 commit 6dfef33

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

substratevm/src/com.oracle.objectfile/src/com/oracle/objectfile/debugentry/ClassEntry.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ public int getFileIdx(FileEntry file) {
201201
return indexedFiles.get(file);
202202
}
203203

204-
private DirEntry getDirEntry(FileEntry file) {
204+
private static DirEntry getDirEntry(FileEntry file) {
205205
if (file == null) {
206206
return null;
207207
}

substratevm/src/com.oracle.objectfile/src/com/oracle/objectfile/debugentry/LocalEntry.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@ public String toString() {
4242
return String.format("Local(%s type=%s slot=%d line=%d)", name, type.getTypeName(), slot, getLine());
4343
}
4444

45-
public void setLine(int line) {
46-
this.line.set(line);
45+
public void setLine(int newLine) {
46+
this.line.set(newLine);
4747
}
4848

4949
public int getLine() {

0 commit comments

Comments
 (0)