Skip to content

Commit

Permalink
LPS-84638 rename
Browse files Browse the repository at this point in the history
  • Loading branch information
brianchandotcom committed Aug 23, 2018
1 parent a1439ed commit 125c562
Showing 1 changed file with 3 additions and 3 deletions.
Expand Up @@ -105,7 +105,7 @@ public StringBundler modify(StringBundler sb, PageContext pageContext) {
"/META-INF/resources/dynamic_section" +
"/info_panel_file_entry.jsp");

String result = null;
String string = null;

try (ByteArrayOutputStream outputStream = new ByteArrayOutputStream()) {
HttpServletResponse httpServletResponse = new PipingServletResponse(
Expand All @@ -114,13 +114,13 @@ public StringBundler modify(StringBundler sb, PageContext pageContext) {
requestDispatcher.include(
pageContext.getRequest(), httpServletResponse);

result = new String(outputStream.toByteArray());
string = new String(outputStream.toByteArray());
}
catch (Exception e) {
throw new RuntimeException(e);
}

return new StringBundler(result);
return new StringBundler(string);
}

@Reference
Expand Down

0 comments on commit 125c562

Please sign in to comment.