Merge pull request #158 from kthoms/kth/380232

[380232] getColumn() should return 0 for "for no information available"
This commit is contained in:
Sebastian Zarnekow 2015-04-20 08:26:18 +02:00
commit 950a695bf1

View file

@ -41,7 +41,7 @@ public abstract class AbstractDiagnostic implements Diagnostic {
@Override
public int getColumn() {
throw new UnsupportedOperationException();
return 0;
}
@Override