dfa: use human numeration, not programmers' one

This commit is contained in:
peter
2013-09-11 14:00:09 +02:00
parent 0c2794b1c9
commit c608b039e5
2 changed files with 2 additions and 2 deletions
@@ -36,6 +36,6 @@ public class AssertIsNotNull {
@Contract(<warning descr="A contract clause must be in form arg1, ..., argN -> return-value">"a"</warning>)
void malformedContract() {}
@Contract(<warning descr="Method takes 2 parameters, while contract clause 0 expects 1">"null -> _"</warning>)
@Contract(<warning descr="Method takes 2 parameters, while contract clause number 1 expects 1">"null -> _"</warning>)
void wrongParameterCount(Object a, boolean b) {}
}