Skip to content

Commit 715bf72

Browse files
committed
Fix try-with-resources warning
1 parent 94209ba commit 715bf72

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

gprof/org.eclipse.linuxtools.gprof/src/org/eclipse/linuxtools/internal/gprof/utils/PPC64ElfBinaryObjectWrapper.java

+8-8
Original file line numberDiff line numberDiff line change
@@ -61,14 +61,14 @@ public ISymbol[] getSymbols() {
6161
return symbols;
6262
}
6363

64-
symbols = super.getSymbols();
65-
try {
66-
if (dataSection == null) {
67-
Elf elf = new Elf(getPath().toOSString());
68-
dataSection = elf.getSectionByName(".data"); //$NON-NLS-1$
69-
}
70-
} catch (IOException e) {
71-
}
64+
symbols = super.getSymbols();
65+
if (dataSection == null) {
66+
try (Elf elf = new Elf(getPath().toOSString())) {
67+
dataSection = elf.getSectionByName(".data"); //$NON-NLS-1$
68+
} catch (IOException e) {
69+
// ignore
70+
}
71+
}
7272

7373
//Failed to load data Section
7474
if (dataSection == null) {

0 commit comments

Comments
 (0)