Skip to content

Commit 5a00294

Browse files
committed
rlp/rlpgen: remove comments
1 parent 00a5387 commit 5a00294

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

rlp/rlpgen/gen.go

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -189,10 +189,8 @@ func (ctx *genContext) importsList() []string {
189189
imp := make([]string, 0, len(ctx.imports))
190190
for path, p := range ctx.imports {
191191
if p.alias == p.pkg.Name() {
192-
// If the alias matches the package name, use standard import
193192
imp = append(imp, fmt.Sprintf("%q", path))
194193
} else {
195-
// If we have a custom alias, use aliased import
196194
imp = append(imp, fmt.Sprintf("%s %q", p.alias, path))
197195
}
198196
}

0 commit comments

Comments
 (0)