Skip to content

Commit a4591c0

Browse files
committed
Added comment
1 parent 5af34d4 commit a4591c0

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

BufIO/BufferedIO.go

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,7 @@ func ReadFile(filename string) {
3535
defer f.Close()
3636
scanner := bufio.NewScanner(f)
3737
for scanner.Scan() {
38-
<<<<<<< HEAD
39-
fmt.Println(scanner.Text()) // read as long there are strings
40-
=======
4138
fmt.Println(scanner.Text())
42-
>>>>>>> c7c9e92ebb7db5469ca9a80ac579e2f0c8d53264
4339
}
4440
if err := scanner.Err(); err != nil {
4541
panic(err.Error()) // error handling

0 commit comments

Comments
 (0)