aboutsummaryrefslogtreecommitdiff
path: root/repl
diff options
context:
space:
mode:
authorLuca Rosellini <luca@stratio.com>2014-01-07 09:44:24 +0100
committerLuca Rosellini <luca@stratio.com>2014-01-07 09:44:24 +0100
commit4689ce29fd506d001d15c863ab4fe29bfac90326 (patch)
tree8a5d3dd8c00cd246e10474b3c3f36beba82fa4e9 /repl
parent0b6db8c186183704feafd26b454fff58a0e31861 (diff)
downloadspark-4689ce29fd506d001d15c863ab4fe29bfac90326.tar.gz
spark-4689ce29fd506d001d15c863ab4fe29bfac90326.tar.bz2
spark-4689ce29fd506d001d15c863ab4fe29bfac90326.zip
Added license header and removed @author tag
Diffstat (limited to 'repl')
-rw-r--r--repl/src/main/scala/org/apache/spark/repl/SparkCommandLine.scala19
-rw-r--r--repl/src/main/scala/org/apache/spark/repl/SparkRunnerSettings.scala19
2 files changed, 34 insertions, 4 deletions
diff --git a/repl/src/main/scala/org/apache/spark/repl/SparkCommandLine.scala b/repl/src/main/scala/org/apache/spark/repl/SparkCommandLine.scala
index acb1e4ceda..05816941b5 100644
--- a/repl/src/main/scala/org/apache/spark/repl/SparkCommandLine.scala
+++ b/repl/src/main/scala/org/apache/spark/repl/SparkCommandLine.scala
@@ -1,3 +1,20 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements. See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
package org.apache.spark.repl
import scala.tools.nsc.{Settings, CompilerCommand}
@@ -6,8 +23,6 @@ import scala.Predef._
/**
* Command class enabling Spark-specific command line options (provided by
* <i>org.apache.spark.repl.SparkRunnerSettings</i>).
- *
- * @author Luca Rosellini <luca@stratio.com>
*/
class SparkCommandLine(args: List[String], override val settings: Settings)
extends CompilerCommand(args, settings) {
diff --git a/repl/src/main/scala/org/apache/spark/repl/SparkRunnerSettings.scala b/repl/src/main/scala/org/apache/spark/repl/SparkRunnerSettings.scala
index 235a688334..7fd5fbb424 100644
--- a/repl/src/main/scala/org/apache/spark/repl/SparkRunnerSettings.scala
+++ b/repl/src/main/scala/org/apache/spark/repl/SparkRunnerSettings.scala
@@ -1,3 +1,20 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements. See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
package org.apache.spark.repl
import scala.tools.nsc.Settings
@@ -5,8 +22,6 @@ import scala.tools.nsc.Settings
/**
* <i>scala.tools.nsc.Settings</i> implementation adding Spark-specific REPL
* command line options.
- *
- * @author Luca Rosellini <luca@stratio.com>
*/
class SparkRunnerSettings(error: String => Unit) extends Settings(error){