Skip to content

Commit 65035a3

Browse files
committed
Inline variable to the scope actually used
1 parent 795befd commit 65035a3

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

rpm/org.eclipse.linuxtools.rpm.ui.editor/src/org/eclipse/linuxtools/internal/rpm/ui/editor/actions/SpecfileChangelogFormatter.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,6 @@ public String mergeChangelog(String dateLine, String functionGuess, String defau
127127
}
128128
// Temporary buffer for changelog text
129129
StringBuilder buf = new StringBuilder();
130-
String changelogText = EMPTY_STRING;
131130
String[] changelogLines = {};
132131
int offset = doc.getLength();
133132
int length = 0;
@@ -151,7 +150,7 @@ public String mergeChangelog(String dateLine, String functionGuess, String defau
151150
} else {
152151
offset = changelogPartition.getOffset();
153152
length = changelogPartition.getLength();
154-
changelogText = doc.get(offset, length);
153+
String changelogText = doc.get(offset, length);
155154

156155
// get old changelog text
157156
changelogLines = changelogText.split("\n"); //$NON-NLS-1$

0 commit comments

Comments
 (0)