File tree Expand file tree Collapse file tree 1 file changed +0
-4
lines changed Expand file tree Collapse file tree 1 file changed +0
-4
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,6 @@ package vpcmodel
8
8
9
9
import (
10
10
"errors"
11
- "fmt"
12
11
"sync"
13
12
14
13
"github.com/np-guard/models/pkg/netset"
@@ -75,10 +74,8 @@ func (n *NetworkAddressLists) GetPublicInternetIPblocksList() ([]*netset.IPBlock
75
74
}
76
75
allInternetRanges := netset .NewIPBlock ()
77
76
for _ , ipRange := range n .publicInternetAddressList {
78
- fmt .Printf ("ipRange.String(): %v\n " , ipRange .String ())
79
77
allInternetRanges = allInternetRanges .Union (ipRange )
80
78
}
81
- fmt .Printf ("allInternetRanges.String(): %v\n " , allInternetRanges .String ())
82
79
return n .publicInternetAddressList , allInternetRanges , nil
83
80
}
84
81
@@ -87,7 +84,6 @@ func (n *NetworkAddressLists) GetServiceNetworkIPblocksList() ([]*netset.IPBlock
87
84
for _ , ipRange := range n .serviceNetworkAddressList {
88
85
allServiceNetworkRanges = allServiceNetworkRanges .Union (ipRange )
89
86
}
90
- fmt .Printf ("allServiceNetworkRanges.String(): %v\n " , allServiceNetworkRanges .String ())
91
87
return n .serviceNetworkAddressList , allServiceNetworkRanges , nil
92
88
}
93
89
You can’t perform that action at this time.
0 commit comments