Selaa lähdekoodia

Delete apparently defunct script

rdb 11 vuotta sitten
vanhempi
sitoutus
cf6fe5fd2a
1 muutettua tiedostoa jossa 0 lisäystä ja 21 poistoa
  1. 0 21
      direct/src/plugin/FileSpec.py

+ 0 - 21
direct/src/plugin/FileSpec.py

@@ -1,21 +0,0 @@
-from pandac.PandaModules import HashVal
-
-class FileSpec:
-    """ Used by make_package and make_contents.  Represents a single
-    file in the directory, and its associated timestamp, size, and md5
-    hash. """
-    
-    def __init__(self, filename, pathname):
-        self.filename = filename
-        self.pathname = pathname
-
-        self.size = pathname.getFileSize()
-        self.timestamp = pathname.getTimestamp()
-
-        hv = HashVal()
-        hv.hashFile(pathname)
-        self.hash = hv.asHex()
-
-    def getParams(self):
-        return 'filename="%s" size="%s" timestamp="%s" hash="%s"' % (
-            self.filename, self.size, self.timestamp, self.hash)