MAPREDUCE-6553. Replace '\u2b05' with '<-' in rendering job configuration. Contributed by Gabor Liptak.

(cherry picked from commit 5ec44fc35c)
This commit is contained in:
Akira Ajisaka 2015-11-25 16:30:23 +09:00
parent d6f7d22929
commit c6cf7910a4
2 changed files with 4 additions and 2 deletions

View File

@ -352,6 +352,9 @@ Release 2.8.0 - UNRELEASED
MAPREDUCE-6540. TestMRTimelineEventHandling fails (sjlee)
MAPREDUCE-6553. Replace '\u2b05' with '<-' in rendering job configuration.
(Gabor Liptak via aajisaka)
Release 2.7.3 - UNRELEASED
INCOMPATIBLE CHANGES

View File

@ -90,8 +90,7 @@ public class ConfBlock extends HtmlBlock {
boolean first = true;
for(int i = (sources.length - 2); i >= 0; i--) {
if(!first) {
// \u2B05 is an arrow <--
buffer.append(" \u2B05 ");
buffer.append(" <- ");
}
first = false;
buffer.append(sources[i]);