Commit c9027421f30101fdc006fcc47bb28b882697a5ec
1 parent
6200830a
Removed extraneous proc
Showing
1 changed file
with
0 additions
and
5 deletions
blimp.nim
... | ... | @@ -175,11 +175,6 @@ proc deflate(filename: string) = |
175 | 175 | writeFile(filename, "hash:" & blimpFilename) |
176 | 176 | if verbose: echo("\t" & filename & " deflated.") |
177 | 177 | |
178 | -proc isInBlimpStore(filename: string): bool = | |
179 | - let blimpFilename = blimpFilename(filename) | |
180 | - if not blimpFilename.isNil: | |
181 | - return true | |
182 | - | |
183 | 178 | # Parse out hash from hash stub and copy back original content from blimpStore. |
184 | 179 | proc inflate(filename: string) = |
185 | 180 | if verbose: echo "Inflating " & filename | ... | ... |