GUAC-800: Properly initialize name and title in Form constructor.

This commit is contained in:
Michael Jumper
2015-05-26 14:38:30 -07:00
parent e31025273a
commit c3558a3ae9

View File

@@ -73,6 +73,8 @@ public class Form {
* The fields to provided within the new Form.
*/
public Form(String name, String title, Collection<Field> fields) {
this.name = name;
this.title = title;
this.fields = fields;
}