fix formating

Project: http://git-wip-us.apache.org/repos/asf/incubator-spark/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-spark/commit/987c6139
Tree: http://git-wip-us.apache.org/repos/asf/incubator-spark/tree/987c6139
Diff: http://git-wip-us.apache.org/repos/asf/incubator-spark/diff/987c6139

Branch: refs/heads/branch-0.8
Commit: 987c613999e18c6ed27eff1402e3769521907788
Parents: a7d0f2f
Author: Xi Liu <x...@conviva.com>
Authored: Wed Oct 9 13:21:42 2013 -0700
Committer: Xi Liu <x...@conviva.com>
Committed: Wed Oct 9 13:21:42 2013 -0700

----------------------------------------------------------------------
 .../org/apache/spark/api/java/function/Function3.java     | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-spark/blob/987c6139/core/src/main/scala/org/apache/spark/api/java/function/Function3.java
----------------------------------------------------------------------
diff --git 
a/core/src/main/scala/org/apache/spark/api/java/function/Function3.java 
b/core/src/main/scala/org/apache/spark/api/java/function/Function3.java
index 6c1ce4c..7d822d1 100644
--- a/core/src/main/scala/org/apache/spark/api/java/function/Function3.java
+++ b/core/src/main/scala/org/apache/spark/api/java/function/Function3.java
@@ -27,12 +27,12 @@ import java.io.Serializable;
  * A three-argument function that takes arguments of type T1, T2, and T3 and 
returns an R.
  */
 public abstract class Function3<T1, T2, T3, R> extends WrappedFunction3<T1, 
T2, T3, R>
-        implements Serializable {
+  implements Serializable {
 
-    public abstract R call(T1 t1, T2 t2, T3 t3) throws Exception;
+  public abstract R call(T1 t1, T2 t2, T3 t3) throws Exception;
 
-    public ClassManifest<R> returnType() {
-        return (ClassManifest<R>) 
ClassManifest$.MODULE$.fromClass(Object.class);
-    }
+  public ClassManifest<R> returnType() {
+    return (ClassManifest<R>) ClassManifest$.MODULE$.fromClass(Object.class);
+  }
 }
 

Reply via email to