Fixed max assignments filter on sw module type

This commit is contained in:
Kai Zimmermann
2016-03-09 19:34:28 +01:00
parent 692a7fbdca
commit 6379e93c5e
3 changed files with 3 additions and 3 deletions

View File

@@ -20,7 +20,7 @@ import java.util.Map;
*/
public interface FieldNameProvider {
/**
* Seperator for the sub attributes
* Separator for the sub attributes
*/
public static final String SUB_ATTRIBUTE_SEPERATOR = ".";

View File

@@ -36,7 +36,7 @@ public enum SoftwareModuleTypeFields implements FieldNameProvider {
/**
* The max ds assignments field.
*/
MAX("maxAssignments");
MAXASSIGNMENTS("maxAssignments");
private final String fieldName;