NomDL: Remove extra write of the Package type refs

When writing a Package we were writing the type refs describing the
types in Package. These are never referenced from anywhere and the
information is embedded into the Package chunk.
This commit is contained in:
Erik Arvidsson
2015-10-27 16:05:04 -04:00
parent 3709f209a9
commit e4544a4e49
-3
View File
@@ -58,9 +58,6 @@ func encCompoundBlobFromCompoundBlob(cb compoundBlob, cs chunks.ChunkSink) inter
}
func processPackageChildren(p Package, cs chunks.ChunkSink) {
for _, t := range p.types {
writeChildValueInternal(t, cs)
}
for _, r := range p.dependencies {
p := LookupPackage(r)
if p != nil {