From bc8acb13edd92f770f7e095a2273c2defe4c93d1 Mon Sep 17 00:00:00 2001
From: Daniel Czerwonk <czerwonk@users.noreply.github.com>
Date: Fri, 11 May 2018 22:55:31 +0200
Subject: [PATCH] Update route.go

clean up
---
 route/route.go | 6 ------
 1 file changed, 6 deletions(-)

diff --git a/route/route.go b/route/route.go
index 3dfbb78b..970f556a 100644
--- a/route/route.go
+++ b/route/route.go
@@ -193,12 +193,6 @@ func getBestProtocol(paths []*Path) uint8 {
 // Print returns a prinatble representation of route `r`
 func (r *Route) Print() string {
 	ret := fmt.Sprintf("%s:\n", r.pfx.String())
-	//ret += fmt.Sprintf("Best path:\n")
-	//ret += r.bestPath.Print()
-	/*ret += fmt.Sprintf("Active Paths:\n")
-	for _, p := range r.activePaths {
-		ret += p.Print()
-	}*/
 	ret += fmt.Sprintf("All Paths:\n")
 	for _, p := range r.paths {
 		ret += p.Print()
-- 
GitLab