diff --git a/Ghidra/Processors/MIPS/src/main/java/ghidra/app/util/bin/format/elf/relocation/MIPS_ElfRelocationContext.java b/Ghidra/Processors/MIPS/src/main/java/ghidra/app/util/bin/format/elf/relocation/MIPS_ElfRelocationContext.java index ded286080f..0fd09960ad 100644 --- a/Ghidra/Processors/MIPS/src/main/java/ghidra/app/util/bin/format/elf/relocation/MIPS_ElfRelocationContext.java +++ b/Ghidra/Processors/MIPS/src/main/java/ghidra/app/util/bin/format/elf/relocation/MIPS_ElfRelocationContext.java @@ -23,16 +23,14 @@ import ghidra.app.util.bin.format.elf.extend.MIPS_ElfExtension; import ghidra.app.util.bin.format.elf.relocation.MIPS_ElfRelocationHandler.MIPS_DeferredRelocation; import ghidra.program.model.address.*; import ghidra.program.model.data.PointerDataType; -import ghidra.program.model.listing.BookmarkType; import ghidra.program.model.mem.MemoryAccessException; import ghidra.program.model.mem.MemoryBlock; -import ghidra.program.model.reloc.RelocationResult; import ghidra.program.model.reloc.Relocation.Status; +import ghidra.program.model.reloc.RelocationResult; import ghidra.program.model.symbol.Symbol; import ghidra.program.model.symbol.SymbolUtilities; import ghidra.util.*; import ghidra.util.exception.AssertException; -import ghidra.util.exception.NotFoundException; /** * {@link MIPS_ElfRelocationContext} provides extended relocation context with the ability diff --git a/Ghidra/Processors/x86/src/main/java/ghidra/app/util/bin/format/elf/relocation/X86_64_ElfRelocationContext.java b/Ghidra/Processors/x86/src/main/java/ghidra/app/util/bin/format/elf/relocation/X86_64_ElfRelocationContext.java index b93435c7df..9ee63b228e 100644 --- a/Ghidra/Processors/x86/src/main/java/ghidra/app/util/bin/format/elf/relocation/X86_64_ElfRelocationContext.java +++ b/Ghidra/Processors/x86/src/main/java/ghidra/app/util/bin/format/elf/relocation/X86_64_ElfRelocationContext.java @@ -4,9 +4,9 @@ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at - * + * * http://www.apache.org/licenses/LICENSE-2.0 - * + * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. @@ -24,7 +24,8 @@ import ghidra.program.model.data.PointerDataType; import ghidra.program.model.mem.MemoryAccessException; import ghidra.program.model.mem.MemoryBlock; import ghidra.util.*; -import ghidra.util.exception.*; +import ghidra.util.exception.InvalidInputException; +import ghidra.util.exception.NotFoundException; /** * X86_64_ElfRelocationContext provides ability to generate a @@ -160,7 +161,9 @@ class X86_64_ElfRelocationContext extends ElfRelocationContext