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

This commit is contained in:
Akira Ajisaka 2015-11-25 16:30:23 +09:00
parent b4c6b511e7
commit 5ec44fc35c
2 changed files with 4 additions and 2 deletions

View File

@ -642,6 +642,9 @@ Release 2.8.0 - UNRELEASED
MAPREDUCE-6533. testDetermineCacheVisibilities of
TestClientDistributedCacheManager is broken (Chang Li via jlowe)
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]);