From c890c359b1dfb64274d1d0067b1e16d834035f11 Mon Sep 17 00:00:00 2001 From: Dongjoon Hyun Date: Wed, 16 Mar 2016 22:48:58 -0700 Subject: [MINOR][SQL][BUILD] Remove duplicated lines ## What changes were proposed in this pull request? This PR removes three minor duplicated lines. First one is making the following unreachable code warning. ``` JoinSuite.scala:52: unreachable code [warn] case j: BroadcastHashJoin => j ``` The other two are just consecutive repetitions in `Seq` of MiMa filters. ## How was this patch tested? Pass the existing Jenkins test. Author: Dongjoon Hyun Closes #11773 from dongjoon-hyun/remove_duplicated_line. --- sql/core/src/test/scala/org/apache/spark/sql/JoinSuite.scala | 1 - 1 file changed, 1 deletion(-) (limited to 'sql/core/src') diff --git a/sql/core/src/test/scala/org/apache/spark/sql/JoinSuite.scala b/sql/core/src/test/scala/org/apache/spark/sql/JoinSuite.scala index 41919910a9..03d6df8c28 100644 --- a/sql/core/src/test/scala/org/apache/spark/sql/JoinSuite.scala +++ b/sql/core/src/test/scala/org/apache/spark/sql/JoinSuite.scala @@ -49,7 +49,6 @@ class JoinSuite extends QueryTest with SharedSQLContext { case j: BroadcastHashJoin => j case j: CartesianProduct => j case j: BroadcastNestedLoopJoin => j - case j: BroadcastHashJoin => j case j: SortMergeJoin => j } -- cgit v1.2.3