synchronized (this) {
fs = (FileSystem) cache.get(cacheKey);
if (fs == null) {
if (fileSystemName == null || fileSystemName.equals("local")) {
fs = new LocalFileSystem();
cache.put(cacheKey, fs);
}
/* commenting this out for now
else if (fileSystemName.equalsIgnoreCase("hadoop")) {
Properties props = new Properties();