public Map<String, P2jWarning> getCompletedJobWarnings(JobClient jobClient, JobStats jobStats) {
if (context.getExecType() == ExecType.LOCAL) {
Map<String, P2jWarning> warnings = Maps.newHashMap();
return warnings;
} else {
JobWarnings jw = new JobWarnings();
return jw.findCompletedJobWarnings(jobClient, jobStats);
}
}