Repository: incubator-unomi Updated Branches: refs/heads/master 2c34b5f62 -> a84a12b93
UNOMI-115 Error in Documentation - Step 6: Five Minute Quick Start - Fix comment that was preventing JavaDocs from generating. Signed-off-by: Serge Huber <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/incubator-unomi/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-unomi/commit/a84a12b9 Tree: http://git-wip-us.apache.org/repos/asf/incubator-unomi/tree/a84a12b9 Diff: http://git-wip-us.apache.org/repos/asf/incubator-unomi/diff/a84a12b9 Branch: refs/heads/master Commit: a84a12b93f2fca86ba0d4ac8c116f1db586e6085 Parents: 2c34b5f Author: Serge Huber <[email protected]> Authored: Thu Jul 13 18:01:58 2017 +0200 Committer: Serge Huber <[email protected]> Committed: Thu Jul 13 18:01:58 2017 +0200 ---------------------------------------------------------------------- api/src/main/java/org/apache/unomi/api/ContextRequest.java | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-unomi/blob/a84a12b9/api/src/main/java/org/apache/unomi/api/ContextRequest.java ---------------------------------------------------------------------- diff --git a/api/src/main/java/org/apache/unomi/api/ContextRequest.java b/api/src/main/java/org/apache/unomi/api/ContextRequest.java index 1803bf6..f273907 100644 --- a/api/src/main/java/org/apache/unomi/api/ContextRequest.java +++ b/api/src/main/java/org/apache/unomi/api/ContextRequest.java @@ -26,7 +26,6 @@ import org.apache.unomi.api.services.RulesService; import java.util.List; import java.util.Map; -import java.util.Set; /** * An incoming request for context information from clients of the context server. This allows clients to specify which type of information they are interested in getting from @@ -180,18 +179,18 @@ public class ContextRequest { } /** - * Retrieves the overrides. + * Retrieves the profile overrides. * - * @return the overrides + * @return the profile overrides */ public Profile getProfileOverrides() { return profileOverrides; } /** - * Sets the overrides. + * Sets the profile overrides. * - * @param overrides the collection<String> overrides out of profileProperties and sessionProperties + * @param overrides the profile overrides */ public void setProfileOverrides(Profile overrides) { this.profileOverrides = overrides;
