Remove leftover comment class

This commit is contained in:
Tamas Vajk
2021-09-20 09:33:02 +02:00
committed by Ian Lynagh
parent 7ecb3650cb
commit c64c950d9a

View File

@@ -1,14 +0,0 @@
package com.github.codeql.comments
import utils.Location
data class Comment(val rawText: String, val startOffset: Int, val endOffset: Int, val type: CommentType){
fun getLocation() : Location {
return Location(this.startOffset, this.endOffset)
}
override fun toString(): String {
return "Comment: $rawText [$startOffset-$endOffset]"
}
}