Skip to content

Commit 6eb8bb4

Browse files
author
Zephaniah E. Loss-Cutler-Hull
committed
Remove the unused String method on FQN.
This doesn't get used, and so we can get rid of it instead of adapting it for globs.
1 parent 84fe9c1 commit 6eb8bb4

File tree

1 file changed

+0
-11
lines changed

1 file changed

+0
-11
lines changed

internal/core/fqn.go

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,3 @@ type FQN struct {
99
Schema glob.Glob
1010
Rel glob.Glob
1111
}
12-
13-
func (f FQN) String() string {
14-
s := f.Rel
15-
if f.Schema != "" {
16-
s = f.Schema + "." + s
17-
}
18-
if f.Catalog != "" {
19-
s = f.Catalog + "." + s
20-
}
21-
return s
22-
}

0 commit comments

Comments
 (0)