Skip to content

Commit ba8d1e8

Browse files
committed
Remove unnecessary semicolon
1 parent d69ae94 commit ba8d1e8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

substratevm/src/com.oracle.objectfile/src/com/oracle/objectfile/macho/MachORelocationElement.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ private RelocationInfo(MachORelocationElement containingElement, MachOSection re
241241
this.containingElement = containingElement;
242242
this.relocatedSection = relocatedSection;
243243
this.sectionOffset = offset; // gets turned into a vaddr on write-out
244-
this.log2length = encodeRequestedLength(requestedLength);;
244+
this.log2length = encodeRequestedLength(requestedLength);
245245
this.kind = kind;
246246
SymbolTable symtab = relocatedSection.getOwner().getSymbolTable();
247247
// FIXME: also allow section numbers here, for non-extern symbols

0 commit comments

Comments
 (0)