We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1aed87b commit 6cbd1b3Copy full SHA for 6cbd1b3
2 files changed
cmd/cm/ai_debug.go
@@ -520,11 +520,3 @@ func applyFix(fix FixSuggestion) error {
520
521
return nil
522
}
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
@@ -241,8 +241,3 @@ func autoCreateConfig(projectDir string) error {
241
242
return template.ApplyTemplate(templateName, projectDir)
243
244
245
-func _fileExists(path string) bool {
246
- _, err := os.Stat(path)
247
- return err == nil
248
0 commit comments