aboutsummaryrefslogtreecommitdiffstats
path: root/config-model/src/main/java/com/yahoo/documentmodel/DocumentTypeCollection.java
diff options
context:
space:
mode:
Diffstat (limited to 'config-model/src/main/java/com/yahoo/documentmodel/DocumentTypeCollection.java')
-rw-r--r--config-model/src/main/java/com/yahoo/documentmodel/DocumentTypeCollection.java8
1 files changed, 5 insertions, 3 deletions
diff --git a/config-model/src/main/java/com/yahoo/documentmodel/DocumentTypeCollection.java b/config-model/src/main/java/com/yahoo/documentmodel/DocumentTypeCollection.java
index 3e711a48109..debb22ece9e 100644
--- a/config-model/src/main/java/com/yahoo/documentmodel/DocumentTypeCollection.java
+++ b/config-model/src/main/java/com/yahoo/documentmodel/DocumentTypeCollection.java
@@ -7,7 +7,9 @@ import java.util.Collection;
* @author baldersheim
*/
public interface DocumentTypeCollection {
- public NewDocumentType getDocumentType(NewDocumentType.Name name);
- public NewDocumentType getDocumentType(int id);
- public Collection<NewDocumentType> getTypes();
+
+ NewDocumentType getDocumentType(NewDocumentType.Name name);
+ NewDocumentType getDocumentType(int id);
+ Collection<NewDocumentType> getTypes();
+
}