Output a string representation in the form fileName:lineIdx+1. Note this uses a 1-based line number as is customary for human-readable line numbers. @return the string representation of this line ID
()
| 114 | * @return the string representation of this line ID |
| 115 | */ |
| 116 | @Override |
| 117 | public String toString() { |
| 118 | return fileName + ":" + (lineIdx + 1); |
| 119 | } |
| 120 | |
| 121 | |
| 122 | /** |
no outgoing calls
no test coverage detected