Removed copyright statements.
authorChris Jones <christian.jones@sri.com>
Sun, 15 Sep 2013 11:34:35 -0600
changeset 142 0ff033eed887
parent 141 f0d0f3b941a6
child 143 62166e57800e
Removed copyright statements.
example/interact.go
xmpp/log.go
xmpp/roster.go
xmpp/roster_test.go
xmpp/stream.go
xmpp/stream_test.go
xmpp/structs.go
xmpp/structs_test.go
xmpp/xmpp.go
xmpp/xmpp_test.go
--- a/example/interact.go	Sun Sep 15 11:23:06 2013 -0600
+++ b/example/interact.go	Sun Sep 15 11:34:35 2013 -0600
@@ -1,7 +1,3 @@
-// Copyright 2011 The Go Authors.  All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
 package main
 
 import (
--- a/xmpp/log.go	Sun Sep 15 11:23:06 2013 -0600
+++ b/xmpp/log.go	Sun Sep 15 11:34:35 2013 -0600
@@ -1,7 +1,3 @@
-// Copyright 2011 The Go Authors.  All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
 // Control over logging from the XMPP library.
 
 package xmpp
--- a/xmpp/roster.go	Sun Sep 15 11:23:06 2013 -0600
+++ b/xmpp/roster.go	Sun Sep 15 11:34:35 2013 -0600
@@ -1,7 +1,3 @@
-// Copyright 2011 The Go Authors.  All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
 package xmpp
 
 // This file contains support for roster management, RFC 3921, Section 7.
--- a/xmpp/roster_test.go	Sun Sep 15 11:23:06 2013 -0600
+++ b/xmpp/roster_test.go	Sun Sep 15 11:34:35 2013 -0600
@@ -1,7 +1,3 @@
-// Copyright 2011 The Go Authors.  All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
 package xmpp
 
 import (
--- a/xmpp/stream.go	Sun Sep 15 11:23:06 2013 -0600
+++ b/xmpp/stream.go	Sun Sep 15 11:34:35 2013 -0600
@@ -1,7 +1,3 @@
-// Copyright 2011 The Go Authors.  All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
 // This file contains the three layers of processing for the
 // communication with the server: transport (where TLS happens), XML
 // (where strings are converted to go structures), and Stream (where
--- a/xmpp/stream_test.go	Sun Sep 15 11:23:06 2013 -0600
+++ b/xmpp/stream_test.go	Sun Sep 15 11:34:35 2013 -0600
@@ -1,7 +1,3 @@
-// Copyright 2011 The Go Authors.  All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
 package xmpp
 
 import (
--- a/xmpp/structs.go	Sun Sep 15 11:23:06 2013 -0600
+++ b/xmpp/structs.go	Sun Sep 15 11:34:35 2013 -0600
@@ -1,7 +1,3 @@
-// Copyright 2011 The Go Authors.  All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
 package xmpp
 
 // This file contains data structures.
--- a/xmpp/structs_test.go	Sun Sep 15 11:23:06 2013 -0600
+++ b/xmpp/structs_test.go	Sun Sep 15 11:34:35 2013 -0600
@@ -1,7 +1,3 @@
-// Copyright 2011 The Go Authors.  All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
 package xmpp
 
 import (
--- a/xmpp/xmpp.go	Sun Sep 15 11:23:06 2013 -0600
+++ b/xmpp/xmpp.go	Sun Sep 15 11:34:35 2013 -0600
@@ -1,7 +1,3 @@
-// Copyright 2011 The Go Authors.  All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
 // This package implements a simple XMPP client according to RFCs 3920
 // and 3921, plus the various XEPs at http://xmpp.org/protocols/. The
 // implementation is structured as a stack of layers, with TCP at the
--- a/xmpp/xmpp_test.go	Sun Sep 15 11:23:06 2013 -0600
+++ b/xmpp/xmpp_test.go	Sun Sep 15 11:34:35 2013 -0600
@@ -1,7 +1,3 @@
-// Copyright 2011 The Go Authors.  All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
 package xmpp
 
 import (