FIX: return value typo

Project: http://git-wip-us.apache.org/repos/asf/tika/repo
Commit: http://git-wip-us.apache.org/repos/asf/tika/commit/c6eefbde
Tree: http://git-wip-us.apache.org/repos/asf/tika/tree/c6eefbde
Diff: http://git-wip-us.apache.org/repos/asf/tika/diff/c6eefbde

Branch: refs/heads/master
Commit: c6eefbde650dd3be88103416b45ca5e92a336f92
Parents: 9e08a6b
Author: Thamme Gowda <[email protected]>
Authored: Fri May 27 10:33:25 2016 -0700
Committer: Thamme Gowda <[email protected]>
Committed: Fri May 27 10:33:25 2016 -0700

----------------------------------------------------------------------
 .../src/main/java/org/apache/tika/parser/ParseContext.java      | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tika/blob/c6eefbde/tika-core/src/main/java/org/apache/tika/parser/ParseContext.java
----------------------------------------------------------------------
diff --git a/tika-core/src/main/java/org/apache/tika/parser/ParseContext.java 
b/tika-core/src/main/java/org/apache/tika/parser/ParseContext.java
index c47bbec..dc03099 100644
--- a/tika-core/src/main/java/org/apache/tika/parser/ParseContext.java
+++ b/tika-core/src/main/java/org/apache/tika/parser/ParseContext.java
@@ -213,9 +213,10 @@ public class ParseContext implements Serializable {
     /**
      * Gets the value associated with given parameter
      * @param key parameter name
+     * @return param value
      */
-    public void getParam(String key){
-        this.params.get(key);
+    public Param<?> getParam(String key){
+        return this.params.get(key);
     }
 
     /**

Reply via email to