align message according to javac (IDEA-178211)

This commit is contained in:
Anna Kozlova
2017-08-30 16:06:10 +03:00
parent df991969eb
commit 90924b2043
2 changed files with 2 additions and 2 deletions

View File

@@ -206,7 +206,7 @@ incompatible.types.html.tooltip=\
<tr><td>Found:</td><td>{2}</td>{3}</tr>\
</table></body></html>
interface.methods.cannot.have.body=Interface methods cannot have body
interface.methods.cannot.have.body=Interface abstract methods cannot have body
abstract.methods.cannot.have.a.body=Abstract methods cannot have a body
native.methods.cannot.have.a.body=Native methods cannot have a body
extension.method.should.have.a.body=Extension method should have a body

View File

@@ -12,5 +12,5 @@ abstract public class a1 {
}
interface ii {
<error descr="Interface methods cannot have body">int iif(int i) throws Exception</error> { return 2; }
<error descr="Interface abstract methods cannot have body">int iif(int i) throws Exception</error> { return 2; }
}