summaryrefslogtreecommitdiff
path: root/BJC-Utils2/src/main/java/bjc/utils/components/IComponentRepository.java
diff options
context:
space:
mode:
Diffstat (limited to 'BJC-Utils2/src/main/java/bjc/utils/components/IComponentRepository.java')
-rw-r--r--BJC-Utils2/src/main/java/bjc/utils/components/IComponentRepository.java11
1 files changed, 5 insertions, 6 deletions
diff --git a/BJC-Utils2/src/main/java/bjc/utils/components/IComponentRepository.java b/BJC-Utils2/src/main/java/bjc/utils/components/IComponentRepository.java
index a4dbfde..f3aab76 100644
--- a/BJC-Utils2/src/main/java/bjc/utils/components/IComponentRepository.java
+++ b/BJC-Utils2/src/main/java/bjc/utils/components/IComponentRepository.java
@@ -10,15 +10,14 @@ import bjc.utils.funcdata.IMap;
* @author ben
*
* @param <ComponentType>
- * The type of components contained in this repository
+ * The type of components contained in this repository
*/
-public interface IComponentRepository<
- ComponentType extends IDescribedComponent> {
+public interface IComponentRepository<ComponentType extends IDescribedComponent> {
/**
* Get all of the components this repository knows about
*
- * @return A map from component name to component, containing all of
- * the components in the repositories
+ * @return A map from component name to component, containing all of the
+ * components in the repositories
*/
public IMap<String, ComponentType> getAll();
@@ -26,7 +25,7 @@ public interface IComponentRepository<
* Get a component with a specific name
*
* @param name
- * The name of the component to retrieve
+ * The name of the component to retrieve
* @return The named component, or null if no component with that name
* exists
*/