Fix javadoc on IntentStore and add newline at the end of the intent package-info.
Showing
2 changed files
with
3 additions
and
2 deletions
... | @@ -33,6 +33,8 @@ public interface IntentStore extends Store<IntentEvent, IntentStoreDelegate> { | ... | @@ -33,6 +33,8 @@ public interface IntentStore extends Store<IntentEvent, IntentStoreDelegate> { |
33 | 33 | ||
34 | /** | 34 | /** |
35 | * Returns the number of intents in the store. | 35 | * Returns the number of intents in the store. |
36 | + * | ||
37 | + * @return the number of intents in the store | ||
36 | */ | 38 | */ |
37 | long getIntentCount(); | 39 | long getIntentCount(); |
38 | 40 | ||
... | @@ -44,7 +46,7 @@ public interface IntentStore extends Store<IntentEvent, IntentStoreDelegate> { | ... | @@ -44,7 +46,7 @@ public interface IntentStore extends Store<IntentEvent, IntentStoreDelegate> { |
44 | Iterable<Intent> getIntents(); | 46 | Iterable<Intent> getIntents(); |
45 | 47 | ||
46 | /** | 48 | /** |
47 | - * Returns the intent with the specified identifer. | 49 | + * Returns the intent with the specified identifier. |
48 | * | 50 | * |
49 | * @param intentId intent identification | 51 | * @param intentId intent identification |
50 | * @return intent or null if not found | 52 | * @return intent or null if not found |
... | @@ -94,7 +96,6 @@ public interface IntentStore extends Store<IntentEvent, IntentStoreDelegate> { | ... | @@ -94,7 +96,6 @@ public interface IntentStore extends Store<IntentEvent, IntentStoreDelegate> { |
94 | * specified original intent. | 96 | * specified original intent. |
95 | * | 97 | * |
96 | * @param intentId original intent identifier | 98 | * @param intentId original intent identifier |
97 | - * @return compiled state transition event | ||
98 | */ | 99 | */ |
99 | void removeInstalledIntents(IntentId intentId); | 100 | void removeInstalledIntents(IntentId intentId); |
100 | 101 | ... | ... |
-
Please register or login to post a comment