Remove unused source type

This commit is contained in:
Michael Miller 2018-09-15 10:53:00 -06:00
parent a3366add13
commit 251bf5bb5e
2 changed files with 0 additions and 17 deletions
src/spectator

View file

@ -1,5 +1,3 @@
require "./source"
module Spectator
abstract class Example
getter group : ExampleGroup

View file

@ -1,15 +0,0 @@
module Spectator
class Source
getter file : String
getter line : Int32
def initialize(@file, @line)
end
def to_s(io)
io << file
io << ':'
io << line
end
end
end