aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Byron <[email protected]>2019-04-06 15:22:48 +1100
committerGitHub <[email protected]>2019-04-06 15:22:48 +1100
commit89a66cbf40440e82921719c6919f11bb563d7cfa (patch)
treed830601627e5757a16ab97eb7ee271a391b185a7
parentMerge pull request #7 from WillEccles/master (diff)
downloadschemer2-89a66cbf40440e82921719c6919f11bb563d7cfa.tar.xz
schemer2-89a66cbf40440e82921719c6919f11bb563d7cfa.zip
Removed unused code
-rw-r--r--input.go5
1 files changed, 0 insertions, 5 deletions
diff --git a/input.go b/input.go
index 2cc9466..8bd3a4b 100644
--- a/input.go
+++ b/input.go
@@ -268,11 +268,6 @@ func inputKittyTerm(filename string) ([]color.Color, error) {
// Split into lines
lines := strings.Split(config, "\n")
- // Remove all spaces
- //for i, l := range lines {
- // lines[i] = strings.Replace(l, " ", "", -1)
- //}
-
colorlines := make([]string, 0)
// Search for lines containing color information
re := regexp.MustCompile("^color[0-9]*")