MAPREDUCE-6553. Replace '\u2b05' with '<-' in rendering job configuration. Contributed by Gabor Liptak.
This commit is contained in:
parent
b4c6b511e7
commit
5ec44fc35c
|
@ -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
|
||||
|
|
|
@ -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]);
|
||||
|
|
Loading…
Reference in New Issue