Subversion Repositories SmartDukaan

Rev

Rev 64 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 64 Rev 246
Line 101... Line 101...
101
		}
101
		}
102
		
102
		
103
		Utils.info("De-serialization complete");
103
		Utils.info("De-serialization complete");
104
		return obj;
104
		return obj;
105
	}
105
	}
-
 
106
	
-
 
107
	/**
-
 
108
	 * 
-
 
109
	 * @param dbFile
-
 
110
	 * @throws Exception
-
 
111
	 */
-
 
112
	public static boolean delete(String dbFile) throws Exception {
-
 
113
		File f = new File(dbFile);
-
 
114
		if(f.exists()) {
-
 
115
			return f.delete();
-
 
116
		}
-
 
117
		
-
 
118
		return true;
-
 
119
	}
106
}
120
}