Skip to content

Commit 6cbd1b3

Browse files
committed
chore: Clean up unused functions for v3.0.0 release
1 parent 1aed87b commit 6cbd1b3

2 files changed

Lines changed: 0 additions & 13 deletions

File tree

cmd/cm/ai_debug.go

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -520,11 +520,3 @@ func applyFix(fix FixSuggestion) error {
520520

521521
return nil
522522
}
523-
524-
// _truncateStr truncates a string to max length (kept for potential future use)
525-
func _truncateStr(s string, max int) string {
526-
if len(s) <= max {
527-
return s
528-
}
529-
return s[:max-3] + "..."
530-
}

cmd/cm/clone.go

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -241,8 +241,3 @@ func autoCreateConfig(projectDir string) error {
241241

242242
return template.ApplyTemplate(templateName, projectDir)
243243
}
244-
245-
func _fileExists(path string) bool {
246-
_, err := os.Stat(path)
247-
return err == nil
248-
}

0 commit comments

Comments
 (0)