Skip to content

Commit d77ae13

Browse files
committed
remove comments
1 parent 6883f92 commit d77ae13

File tree

2 files changed

+0
-5
lines changed

2 files changed

+0
-5
lines changed

pkg/github/tools.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -386,7 +386,6 @@ func DefaultToolsetGroup(readOnly bool, getClient GetClientFn, getGQLClient GetG
386386
tsg.AddToolset(stargazers)
387387
tsg.AddToolset(labels)
388388

389-
// Register deprecated tool aliases for backward compatibility
390389
tsg.AddDeprecatedToolAliases(DeprecatedToolAliases)
391390

392391
return tsg

pkg/toolsets/toolsets.go

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -207,14 +207,10 @@ func NewToolsetGroup(readOnly bool) *ToolsetGroup {
207207
}
208208
}
209209

210-
// AddDeprecatedToolAlias registers an alias for a renamed tool.
211-
// When a user requests oldName, it will resolve to newName.
212-
// This allows tool renames without breaking existing user configurations.
213210
func (tg *ToolsetGroup) AddDeprecatedToolAlias(oldName, newName string) {
214211
tg.deprecatedAliases[oldName] = newName
215212
}
216213

217-
// AddDeprecatedToolAliases registers multiple aliases for renamed tools.
218214
func (tg *ToolsetGroup) AddDeprecatedToolAliases(aliases map[string]string) {
219215
for oldName, newName := range aliases {
220216
tg.deprecatedAliases[oldName] = newName

0 commit comments

Comments
 (0)