Skip to content

Commit

Permalink
baseURLは出力しない
Browse files Browse the repository at this point in the history
  • Loading branch information
Kyome22 committed Mar 12, 2022
1 parent 429f2db commit f4e570e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/LineCounterFramework/LineCounter.swift
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public struct LineCounter {
filePaths.forEach { filePath in
do {
let count: Int = try countLine(filePath, extensions)
result += "\t\(count)\t\(filePath.relativePath)\n\t\t\(filePath.baseURL?.path ?? "no baseURL")\n"
result += "\t\(count)\t\(filePath.relativePath)\n"
total += count
} catch let lcError as LCError {
if noWarnings {
Expand Down

0 comments on commit f4e570e

Please sign in to comment.