Fix Javadoc warnings
Change-Id: If6ced93d6fc91c1b6fc8381b26fde9434de6d7c8
Showing
1 changed file
with
2 additions
and
0 deletions
... | @@ -56,6 +56,7 @@ public abstract class ResourcePath { | ... | @@ -56,6 +56,7 @@ public abstract class ResourcePath { |
56 | * Creates an resource path which represents a discrete-type resource from the specified components. | 56 | * Creates an resource path which represents a discrete-type resource from the specified components. |
57 | * | 57 | * |
58 | * @param components components of the path. The order represents hierarchical structure of the resource. | 58 | * @param components components of the path. The order represents hierarchical structure of the resource. |
59 | + * @return resource path instance | ||
59 | */ | 60 | */ |
60 | public static ResourcePath discrete(Object... components) { | 61 | public static ResourcePath discrete(Object... components) { |
61 | if (components.length == 0) { | 62 | if (components.length == 0) { |
... | @@ -70,6 +71,7 @@ public abstract class ResourcePath { | ... | @@ -70,6 +71,7 @@ public abstract class ResourcePath { |
70 | * | 71 | * |
71 | * @param value amount of the resource | 72 | * @param value amount of the resource |
72 | * @param components components of the path. The order represents hierarchical structure of the resource. | 73 | * @param components components of the path. The order represents hierarchical structure of the resource. |
74 | + * @return resource path instance | ||
73 | */ | 75 | */ |
74 | public static ResourcePath continuous(double value, Object... components) { | 76 | public static ResourcePath continuous(double value, Object... components) { |
75 | return new Continuous(ImmutableList.copyOf(components), value); | 77 | return new Continuous(ImmutableList.copyOf(components), value); | ... | ... |
-
Please register or login to post a comment