mirror of
https://github.com/sigmasternchen/xtext-core
synced 2025-03-16 08:48:55 +00:00
be compatible to Java 5
This commit is contained in:
parent
c3f2de2167
commit
56c7f5c35e
1 changed files with 1 additions and 1 deletions
|
@ -111,7 +111,7 @@ public @interface XpectCommaSeparatedValues {
|
|||
}
|
||||
if (expItem != null) {
|
||||
expString.append(expItem);
|
||||
expEmpty = expItem.trim().isEmpty();
|
||||
expEmpty = expItem.trim().length() == 0;
|
||||
}
|
||||
if (actItem != null)
|
||||
actString.append(actItem);
|
||||
|
|
Loading…
Reference in a new issue