You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spark.apache.org by sr...@apache.org on 2015/12/15 12:39:03 UTC

spark git commit: [SPARK-12332][TRIVIAL][TEST] Fix minor typo in ResetSystemProperties

Repository: spark
Updated Branches:
  refs/heads/master 606f99b94 -> c59df8c51


[SPARK-12332][TRIVIAL][TEST] Fix minor typo in ResetSystemProperties

Fix a minor typo (unbalanced bracket) in ResetSystemProperties.

Author: Holden Karau <ho...@us.ibm.com>

Closes #10303 from holdenk/SPARK-12332-trivial-typo-in-ResetSystemProperties-comment.


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

Branch: refs/heads/master
Commit: c59df8c51609a0d6561ae1868e7970b516fb1811
Parents: 606f99b
Author: Holden Karau <ho...@us.ibm.com>
Authored: Tue Dec 15 11:38:57 2015 +0000
Committer: Sean Owen <so...@cloudera.com>
Committed: Tue Dec 15 11:38:57 2015 +0000

----------------------------------------------------------------------
 .../test/scala/org/apache/spark/util/ResetSystemProperties.scala   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/spark/blob/c59df8c5/core/src/test/scala/org/apache/spark/util/ResetSystemProperties.scala
----------------------------------------------------------------------
diff --git a/core/src/test/scala/org/apache/spark/util/ResetSystemProperties.scala b/core/src/test/scala/org/apache/spark/util/ResetSystemProperties.scala
index c58db5e..60fb7ab 100644
--- a/core/src/test/scala/org/apache/spark/util/ResetSystemProperties.scala
+++ b/core/src/test/scala/org/apache/spark/util/ResetSystemProperties.scala
@@ -45,7 +45,7 @@ private[spark] trait ResetSystemProperties extends BeforeAndAfterEach { this: Su
   var oldProperties: Properties = null
 
   override def beforeEach(): Unit = {
-    // we need SerializationUtils.clone instead of `new Properties(System.getProperties()` because
+    // we need SerializationUtils.clone instead of `new Properties(System.getProperties())` because
     // the later way of creating a copy does not copy the properties but it initializes a new
     // Properties object with the given properties as defaults. They are not recognized at all
     // by standard Scala wrapper over Java Properties then.


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@spark.apache.org
For additional commands, e-mail: commits-help@spark.apache.org