Skip to content

Commit 4a54464

Browse files
authored
Merge pull request #191 from ashawley/google-copyright
Move Google copyright to file header
2 parents ff9c21c + 3cd00aa commit 4a54464

File tree

2 files changed

+4
-13
lines changed

2 files changed

+4
-13
lines changed

shared/src/main/scala/scala/xml/Elem.scala

+2-6
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
** __\ \/ /__/ __ |/ /__/ __ | http://scala-lang.org/ **
55
** /____/\___/_/ |_/____/_/ | | **
66
** |/ **
7+
** Copyright 2008 Google Inc. **
8+
** All Rights Reserved. **
79
\* */
810

911
package scala
@@ -14,9 +16,6 @@ package xml
1416
* convenient construction and deconstruction. It is possible to deconstruct
1517
* any `Node` instance (that is not a `SpecialNode` or a `Group`) using the
1618
* syntax `case Elem(prefix, label, attribs, scope, child @ _*) => ...`
17-
*
18-
* Copyright 2008 Google Inc. All Rights Reserved.
19-
* @author Burak Emir <[email protected]>
2019
*/
2120
object Elem {
2221
/**
@@ -83,9 +82,6 @@ object Elem {
8382
* @param minimizeEmpty `true` if this element should be serialized as minimized (i.e. "&lt;el/&gt;") when
8483
* empty; `false` if it should be written out in long form.
8584
* @param child the children of this node
86-
*
87-
* Copyright 2008 Google Inc. All Rights Reserved.
88-
* @author Burak Emir <[email protected]>
8985
*/
9086
class Elem(
9187
override val prefix: String,

shared/src/main/scala/scala/xml/MetaData.scala

+2-7
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
** __\ \/ /__/ __ |/ /__/ __ | http://scala-lang.org/ **
55
** /____/\___/_/ |_/____/_/ | | **
66
** |/ **
7+
** Copyright 2008 Google Inc. **
8+
** All Rights Reserved. **
79
\* */
810

911
package scala
@@ -13,10 +15,6 @@ import Utility.sbToString
1315
import scala.annotation.tailrec
1416
import scala.collection.AbstractIterable
1517

16-
/**
17-
* Copyright 2008 Google Inc. All Rights Reserved.
18-
* @author Burak Emir <[email protected]>
19-
*/
2018
object MetaData {
2119
/**
2220
* appends all attributes from new_tail to attribs, without attempting to
@@ -78,9 +76,6 @@ object MetaData {
7876
*
7977
* Namespace URIs are obtained by using the namespace scope of the element
8078
* owning this attribute (see `getNamespace`).
81-
*
82-
* Copyright 2008 Google Inc. All Rights Reserved.
83-
* @author Burak Emir <[email protected]>
8479
*/
8580
abstract class MetaData
8681
extends AbstractIterable[MetaData]

0 commit comments

Comments
 (0)