Remove commented code in http.go

Closes #13
master
Matt Baer 2024-08-30 17:41:02 -04:00
parent e7781b8f65
commit a2ffaa73b5
1 changed files with 0 additions and 1 deletions

View File

@ -269,7 +269,6 @@ func Serve(actors map[string]Actor) {
case "Create": case "Create":
actor, ok := actors[mux.Vars(r)["actor"]] // load the actor from memory actor, ok := actors[mux.Vars(r)["actor"]] // load the actor from memory
if !ok { if !ok {
// log.Error(actors)
log.Error("No such actor: " + mux.Vars(r)["actor"]) log.Error("No such actor: " + mux.Vars(r)["actor"])
return return
} }