Remove leftover comments. NFC

This commit is contained in:
Catherine
2025-09-22 19:43:56 +00:00
parent c11114149c
commit 9907a26397
-3
View File
@@ -34,10 +34,8 @@ func Update(
outcome := UpdateError
oldManifest, _ = backend.GetManifest(webRoot)
// log.Println("OLD", ManifestDebugJSON(oldManifest))
if IsManifestEmpty(manifest) {
newManifest, err = manifest, backend.DeleteManifest(webRoot)
// log.Println("NEW", ManifestDebugJSON(newManifest))
if err == nil {
if oldManifest == nil {
outcome = UpdateNoChange
@@ -47,7 +45,6 @@ func Update(
}
} else if err = PrepareManifest(manifest); err == nil {
newManifest, err = StoreManifest(webRoot, manifest)
// log.Println("NEW", ManifestDebugJSON(newManifest))
if err == nil {
if oldManifest == nil {
outcome = UpdateCreated