git-svn-id: https://svn.apache.org/repos/asf/hadoop/core/trunk@700322 13f79535-47bb-0310-9956-ffa450edef68
@@ -799,6 +799,8 @@ Release 0.19.0 - Unreleased
HADOOP-4274. Capacity scheduler accidently modifies the underlying
data structures when browing the job lists. (Hemanth Yamijala via omalley)
+ HADOOP-4309. Fix eclipse-plugin compilation. (cdouglas)
+
Release 0.18.2 - Unreleased
BUG FIXES
@@ -420,7 +420,7 @@ public class HadoopServer {
*/
public void storeSettingsToFile(File file) throws IOException {
FileOutputStream fos = new FileOutputStream(file);
- this.conf.write(fos);
+ this.conf.writeXml(fos);
fos.close();
}
@@ -163,7 +163,7 @@ public class RunOnHadoopWizard extends Wizard {
// confDir);
File confFile = new File(confDir, "hadoop-site.xml");
FileOutputStream fos = new FileOutputStream(confFile);
- conf.write(fos);
+ conf.writeXml(fos);
} catch (IOException ioe) {