MAPREDUCE-6821. Fix javac warning related to the deprecated APIs after upgrading Jackson. Contributed by Yiqin Lin.
This commit is contained in:
parent
754f15bae6
commit
b0b033ea2e
|
@ -72,7 +72,7 @@ import com.google.common.base.Charsets;
|
||||||
class JobSubmitter {
|
class JobSubmitter {
|
||||||
protected static final Log LOG = LogFactory.getLog(JobSubmitter.class);
|
protected static final Log LOG = LogFactory.getLog(JobSubmitter.class);
|
||||||
private static final ObjectReader READER =
|
private static final ObjectReader READER =
|
||||||
new ObjectMapper().reader(Map.class);
|
new ObjectMapper().readerFor(Map.class);
|
||||||
private static final String SHUFFLE_KEYGEN_ALGORITHM = "HmacSHA1";
|
private static final String SHUFFLE_KEYGEN_ALGORITHM = "HmacSHA1";
|
||||||
private static final int SHUFFLE_KEY_LENGTH = 64;
|
private static final int SHUFFLE_KEY_LENGTH = 64;
|
||||||
private FileSystem jtFs;
|
private FileSystem jtFs;
|
||||||
|
|
Loading…
Reference in New Issue