Skip to content

Move Google copyright to file header #191

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 19, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 2 additions & 6 deletions shared/src/main/scala/scala/xml/Elem.scala
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
** __\ \/ /__/ __ |/ /__/ __ | http://scala-lang.org/ **
** /____/\___/_/ |_/____/_/ | | **
** |/ **
** Copyright 2008 Google Inc. **
** All Rights Reserved. **
\* */

package scala
Expand All @@ -14,9 +16,6 @@ package xml
* convenient construction and deconstruction. It is possible to deconstruct
* any `Node` instance (that is not a `SpecialNode` or a `Group`) using the
* syntax `case Elem(prefix, label, attribs, scope, child @ _*) => ...`
*
* Copyright 2008 Google Inc. All Rights Reserved.
* @author Burak Emir <[email protected]>
*/
object Elem {
/**
Expand Down Expand Up @@ -83,9 +82,6 @@ object Elem {
* @param minimizeEmpty `true` if this element should be serialized as minimized (i.e. "&lt;el/&gt;") when
* empty; `false` if it should be written out in long form.
* @param child the children of this node
*
* Copyright 2008 Google Inc. All Rights Reserved.
* @author Burak Emir <[email protected]>
*/
class Elem(
override val prefix: String,
Expand Down
9 changes: 2 additions & 7 deletions shared/src/main/scala/scala/xml/MetaData.scala
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
** __\ \/ /__/ __ |/ /__/ __ | http://scala-lang.org/ **
** /____/\___/_/ |_/____/_/ | | **
** |/ **
** Copyright 2008 Google Inc. **
** All Rights Reserved. **
\* */

package scala
Expand All @@ -13,10 +15,6 @@ import Utility.sbToString
import scala.annotation.tailrec
import scala.collection.AbstractIterable

/**
* Copyright 2008 Google Inc. All Rights Reserved.
* @author Burak Emir <[email protected]>
*/
object MetaData {
/**
* appends all attributes from new_tail to attribs, without attempting to
Expand Down Expand Up @@ -78,9 +76,6 @@ object MetaData {
*
* Namespace URIs are obtained by using the namespace scope of the element
* owning this attribute (see `getNamespace`).
*
* Copyright 2008 Google Inc. All Rights Reserved.
* @author Burak Emir <[email protected]>
*/
abstract class MetaData
extends AbstractIterable[MetaData]
Expand Down