Browse Source

Fixed a typo in FieldGroup.isModified() JavaDoc. (#12172)

Change-Id: I10d7ba7d0bc5c03e65206617c521d089fd4d0cfe
tags/7.1.4
Teemu Pöntelin 10 years ago
parent
commit
4fb775a66c
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      server/src/com/vaadin/data/fieldgroup/FieldGroup.java

+ 1
- 1
server/src/com/vaadin/data/fieldgroup/FieldGroup.java View File

@@ -656,7 +656,7 @@ public class FieldGroup implements Serializable {
/**
* Checks if any bound field has been modified.
*
* @return true if at least on field has been modified, false otherwise
* @return true if at least one field has been modified, false otherwise
*/
public boolean isModified() {
for (Field<?> field : getFields()) {

Loading…
Cancel
Save