[380232] getColumn() should return 0 for "for no information available"

Signed-off-by: Karsten Thoms <karsten.thoms@itemis.de>
This commit is contained in:
Karsten Thoms 2015-04-16 15:34:38 +02:00
parent cddd77f476
commit b8b82e13a3

View file

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