comparison src/org/dancres/blitz/meta/MetaIteratorImpl.java @ 9:e92d83b192bb

Remove some dead code (Dave Brosius)
author Dan Creswell <dan.creswell@gmail.com>
date Sat, 23 May 2009 11:28:57 +0100
parents 3dc0c5604566
children
comparison
equal deleted inserted replaced
8:77db38eb3042 9:e92d83b192bb
41 if (myResult.equals(OperationStatus.NOTFOUND)) { 41 if (myResult.equals(OperationStatus.NOTFOUND)) {
42 return null; 42 return null;
43 } 43 }
44 44
45 try { 45 try {
46 Serializable myObject = (Serializable) 46 Serializable myObject = ObjectTransformer.toObject(myData.getData());
47 ObjectTransformer.toObject(myData.getData());
48 47
49 return new MetaEntryImpl(myKey.getData(), myObject); 48 return new MetaEntryImpl(myKey.getData(), myObject);
50 49
51 } catch (Exception anException) { 50 } catch (Exception anException) {
52 RegistryImpl.theLogger.log(Level.SEVERE, 51 RegistryImpl.theLogger.log(Level.SEVERE,