mirror of https://github.com/Hilbis/Hilbish
fix: remove print in history handler
parent
058d6ac456
commit
a0dff5babf
|
@ -24,7 +24,6 @@ func newFileHistory() (*fileHistory, error) {
|
||||||
lines := strings.Split(string(data), "\n")
|
lines := strings.Split(string(data), "\n")
|
||||||
for i, l := range lines {
|
for i, l := range lines {
|
||||||
if i == len(lines) - 1 {
|
if i == len(lines) - 1 {
|
||||||
println(i, l)
|
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
itms = append(itms, l)
|
itms = append(itms, l)
|
||||||
|
|
Loading…
Reference in New Issue