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
|
MAPREDUCE-6533. testDetermineCacheVisibilities of
|
||||||
TestClientDistributedCacheManager is broken (Chang Li via jlowe)
|
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
|
Release 2.7.3 - UNRELEASED
|
||||||
|
|
||||||
INCOMPATIBLE CHANGES
|
INCOMPATIBLE CHANGES
|
||||||
|
@ -90,8 +90,7 @@ public class ConfBlock extends HtmlBlock {
|
|||||||
boolean first = true;
|
boolean first = true;
|
||||||
for(int i = (sources.length - 2); i >= 0; i--) {
|
for(int i = (sources.length - 2); i >= 0; i--) {
|
||||||
if(!first) {
|
if(!first) {
|
||||||
// \u2B05 is an arrow <--
|
buffer.append(" <- ");
|
||||||
buffer.append(" \u2B05 ");
|
|
||||||
}
|
}
|
||||||
first = false;
|
first = false;
|
||||||
buffer.append(sources[i]);
|
buffer.append(sources[i]);
|
||||||
|
Loading…
Reference in New Issue
Block a user