r9718 - helma-ng/trunk/modules/helma/storage

[email protected] Thu, 7 May 2009 15:31:38 +0200 (CEST)
Newsgroups gmane.comp.java.helma.cvs
Message-ID <20090507133138.BF48B3D0D6@mia>
Author: hannes
Date: 2009-05-07 15:31:38 +0200 (Thu, 07 May 2009)
New Revision: 9718

Modified:
   helma-ng/trunk/modules/helma/storage/storable.js
Log:
tabs to spaces

Details at http://dev.helma.org/trac/helma/changeset/9718

Modified: helma-ng/trunk/modules/helma/storage/storable.js
===================================================================
--- helma-ng/trunk/modules/helma/storage/storable.js	2009-05-07 13:22:06 UTC (rev 9717)
+++ helma-ng/trunk/modules/helma/storage/storable.js	2009-05-07 13:31:38 UTC (rev 9718)
@@ -19,14 +19,14 @@
     }
 
 	// if called with one argument, return a constructor for a concrete type.
-	if (arguments.length == 1) {
-		var ctor = bindArguments(Storable, type);
+    if (arguments.length == 1) {
+        var ctor = bindArguments(Storable, type);
         ctor.all = bindArguments(store.all, type);
         ctor.get = bindArguments(store.get, type);
         ctor.prototype.__proto__ = Storable.prototype;
         typeRegistry[type] = ctor;
         return ctor;
-	}
+    }
 
     // if a constructor is registered make sure we use it to get the
     // right prototype chain on the instance object