# HG changeset patch # User Chris Jones # Date 1379266475 21600 # Node ID 0ff033eed8878c618995c392e568651e6319f60a # Parent f0d0f3b941a6ff122dac9b2786f9d022262f6b01 Removed copyright statements. diff -r f0d0f3b941a6 -r 0ff033eed887 example/interact.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 ( diff -r f0d0f3b941a6 -r 0ff033eed887 xmpp/log.go --- 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 diff -r f0d0f3b941a6 -r 0ff033eed887 xmpp/roster.go --- 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. diff -r f0d0f3b941a6 -r 0ff033eed887 xmpp/roster_test.go --- 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 ( diff -r f0d0f3b941a6 -r 0ff033eed887 xmpp/stream.go --- 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 diff -r f0d0f3b941a6 -r 0ff033eed887 xmpp/stream_test.go --- 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 ( diff -r f0d0f3b941a6 -r 0ff033eed887 xmpp/structs.go --- 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. diff -r f0d0f3b941a6 -r 0ff033eed887 xmpp/structs_test.go --- 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 ( diff -r f0d0f3b941a6 -r 0ff033eed887 xmpp/xmpp.go --- 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 diff -r f0d0f3b941a6 -r 0ff033eed887 xmpp/xmpp_test.go --- 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 (