From df94066e3af02ff02d5ab4d033a3d603f743234c Mon Sep 17 00:00:00 2001 From: bjculkin Date: Mon, 12 Feb 2018 22:45:04 -0500 Subject: Formatting pass --- .../java/bjc/utils/components/IDescribedComponent.java | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) (limited to 'base/src/main/java/bjc/utils/components/IDescribedComponent.java') diff --git a/base/src/main/java/bjc/utils/components/IDescribedComponent.java b/base/src/main/java/bjc/utils/components/IDescribedComponent.java index 78af4bc..6921849 100644 --- a/base/src/main/java/bjc/utils/components/IDescribedComponent.java +++ b/base/src/main/java/bjc/utils/components/IDescribedComponent.java @@ -13,8 +13,7 @@ public interface IDescribedComponent extends Comparable { * * Providing this is optional, with "Anonymous" as the default author. * - * @return - * The author of the component. + * @return The author of the component. */ default String getAuthor() { return "Anonymous"; @@ -26,8 +25,7 @@ public interface IDescribedComponent extends Comparable { * Providing this is optional, with the default being a note that no * description was provided. * - * @return - * The description of the component + * @return The description of the component */ default String getDescription() { return "No description provided."; @@ -38,8 +36,7 @@ public interface IDescribedComponent extends Comparable { * * This is the only thing required of all components. * - * @return - * The name of the component. + * @return The name of the component. */ String getName(); @@ -48,8 +45,7 @@ public interface IDescribedComponent extends Comparable { * * Providing this is optional, with "1" as the default version. * - * @return - * The version of this component. + * @return The version of this component. */ default int getVersion() { return 1; @@ -59,7 +55,7 @@ public interface IDescribedComponent extends Comparable { default int compareTo(final IDescribedComponent o) { int res = getName().compareTo(o.getName()); - if (res == 0) { + if(res == 0) { res = getVersion() - o.getVersion(); } -- cgit v1.2.3