Index: sample/hadoop-0.16/tw/org/nchc/code/HBaseRecordPro.java
===================================================================
--- sample/hadoop-0.16/tw/org/nchc/code/HBaseRecordPro.java	(revision 23)
+++ sample/hadoop-0.16/tw/org/nchc/code/HBaseRecordPro.java	(revision 25)
@@ -228,7 +228,7 @@
 		conf.setNumMapTasks(mapTasks);
 		conf.setNumReduceTasks(reduceTasks);
-		// 0.16
-//		conf.setInputPath(text_path);
-		Convert.setInputPath(conf, text_path);
+		
+		conf.setInputPath(text_path);
+
 		
 		conf.setMapperClass(IdentityMapper.class);
@@ -240,6 +240,5 @@
 		// delete tmp file
 		// 0.16
-//		FileSystem.get(conf).delete(text_path);
-		FileSystem.get(conf).delete(text_path,true);
+		FileSystem.get(conf).delete(text_path);
 		
 		setup.deleteFile(conf_tmp);
Index: sample/hadoop-0.16/tw/org/nchc/code/WordCount.java
===================================================================
--- sample/hadoop-0.16/tw/org/nchc/code/WordCount.java	(revision 23)
+++ sample/hadoop-0.16/tw/org/nchc/code/WordCount.java	(revision 25)
@@ -110,12 +110,11 @@
 		conf.setNumMapTasks(mapTasks);
 		conf.setNumReduceTasks(reduceTasks);
-		// 0.16
-		// conf.setInputPath(new Path(wc.filepath));
-		Convert.setInputPath(conf, new Path(wc.filepath));
+		
+		conf.setInputPath(new Path(wc.filepath));
+
 		conf.setOutputKeyClass(Text.class);
 		conf.setOutputValueClass(IntWritable.class);
-		// 0.16
-		// conf.setOutputPath(new Path(wc.outputPath));
-		Convert.setOutputPath(conf, new Path(wc.outputPath));
+
+		conf.setOutputPath(new Path(wc.outputPath));
 
 		conf.setMapperClass(MapClass.class);
@@ -125,7 +124,5 @@
 		// Delete the output directory if it exists already
 		Path outputDir = new Path(wc.outputPath);
-		// 0.16
-		FileSystem.get(conf).delete(outputDir,true);
-
+		FileSystem.get(conf).delete(outputDir);
 		JobClient.runJob(conf);
 	}
Index: sample/hadoop-0.16/tw/org/nchc/code/WordCountFromHBase.java
===================================================================
--- sample/hadoop-0.16/tw/org/nchc/code/WordCountFromHBase.java	(revision 23)
+++ sample/hadoop-0.16/tw/org/nchc/code/WordCountFromHBase.java	(revision 25)
@@ -168,9 +168,7 @@
 		// input is Hbase format => TableInputFormat
 		conf.setInputFormat(TableInputFormat.class);
-		// 0.16
-//		conf.setOutputPath(new Path(outputPath));
-		Convert.setOutputPath(conf, new Path(outputPath));
+		conf.setOutputPath(new Path(outputPath));
 //		 delete the old path with the same name 
-		FileSystem.get(conf).delete(new Path(outputPath),true);
+		FileSystem.get(conf).delete(new Path(outputPath));
 		JobClient.runJob(conf);
 	}
