Skip to content

Commit b425891

Browse files
committed
spotlessing
1 parent 11024a1 commit b425891

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

key.core/src/main/java/de/uka/ilkd/key/nparser/builder/FunctionPredicateBuilder.java

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,10 @@ public Object visitDatatype_decl(KeYParser.Datatype_declContext ctx) {
7878
&& (!alreadyDefinedFn.sort().equals(argSort)
7979
|| !alreadyDefinedFn.argSorts().equals(ImmutableList.of(sort)))) {
8080
// The condition checks whether there is already a function with the same name
81-
// but different signature. This is necessarily true if there is a globally defined function
82-
// of the same name and may or may not be true if there is another constructor argument of the
81+
// but different signature. This is necessarily true if there is a globally
82+
// defined function
83+
// of the same name and may or may not be true if there is another constructor
84+
// argument of the
8385
// same name.
8486
semanticError(argNames.get(i), "Name already in namespace: %s" +
8587
". Identifiers in datatype definitions must be unique (also wrt. global functions).",

0 commit comments

Comments
 (0)