Skip to content

Commit 3396f9e

Browse files
author
Simon MacMullen
committed
Merge bug25999 (again)
2 parents dd7019c + 679f2e4 commit 3396f9e

File tree

226 files changed

+261
-271
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

226 files changed

+261
-271
lines changed

LICENSE-MPL-RabbitMQ

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -447,7 +447,7 @@ EXHIBIT A -Mozilla Public License.
447447
The Original Code is RabbitMQ.
448448

449449
The Initial Developer of the Original Code is GoPivotal, Inc.
450-
Copyright (c) 2007-2013 GoPivotal, Inc. All rights reserved.''
450+
Copyright (c) 2007-2014 GoPivotal, Inc. All rights reserved.''
451451

452452
[NOTE: The text of this Exhibit A may differ slightly from the text of
453453
the notices in the Source Code files of the Original Code. You should

codegen.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
## The Original Code is RabbitMQ.
1212
##
1313
## The Initial Developer of the Original Code is GoPivotal, Inc.
14-
## Copyright (c) 2007-2013 GoPivotal, Inc. All rights reserved.
14+
## Copyright (c) 2007-2014 GoPivotal, Inc. All rights reserved.
1515
##
1616

1717
from __future__ import nested_scopes
@@ -143,7 +143,7 @@ def printFileHeader():
143143
// The Original Code is RabbitMQ.
144144
//
145145
// The Initial Developer of the Original Code is GoPivotal, Inc.
146-
// Copyright (c) 2007-2013 GoPivotal, Inc. All rights reserved.
146+
// Copyright (c) 2007-2014 GoPivotal, Inc. All rights reserved.
147147
//
148148
"""
149149

src/com/rabbitmq/client/Address.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
// The Original Code is RabbitMQ.
1212
//
1313
// The Initial Developer of the Original Code is GoPivotal, Inc.
14-
// Copyright (c) 2007-2013 GoPivotal, Inc. All rights reserved.
14+
// Copyright (c) 2007-2014 GoPivotal, Inc. All rights reserved.
1515
//
1616

1717

src/com/rabbitmq/client/AlreadyClosedException.java

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
// The Original Code is RabbitMQ.
1212
//
1313
// The Initial Developer of the Original Code is GoPivotal, Inc.
14-
// Copyright (c) 2007-2013 GoPivotal, Inc. All rights reserved.
14+
// Copyright (c) 2007-2014 GoPivotal, Inc. All rights reserved.
1515
//
1616

1717

@@ -25,8 +25,11 @@ public class AlreadyClosedException extends ShutdownSignalException {
2525
/** Default for suppressing warnings without version check. */
2626
private static final long serialVersionUID = 1L;
2727

28-
public AlreadyClosedException(String s, Object ref)
28+
public AlreadyClosedException(ShutdownSignalException sse)
2929
{
30-
super(true, true, s, ref);
30+
super(sse.isHardError(),
31+
sse.isInitiatedByApplication(),
32+
sse.getReason(),
33+
sse.getReference());
3134
}
3235
}

src/com/rabbitmq/client/AuthenticationFailureException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
// The Original Code is RabbitMQ.
1212
//
1313
// The Initial Developer of the Original Code is GoPivotal, Inc.
14-
// Copyright (c) 2013-2013 GoPivotal, Inc. All rights reserved.
14+
// Copyright (c) 2013-2014 GoPivotal, Inc. All rights reserved.
1515
//
1616

1717
package com.rabbitmq.client;

src/com/rabbitmq/client/BasicProperties.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
// The Original Code is RabbitMQ.
1212
//
1313
// The Initial Developer of the Original Code is GoPivotal, Inc.
14-
// Copyright (c) 2007-2013 GoPivotal, Inc. All rights reserved.
14+
// Copyright (c) 2007-2014 GoPivotal, Inc. All rights reserved.
1515
//
1616

1717
package com.rabbitmq.client;

src/com/rabbitmq/client/BlockedListener.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
// The Original Code is RabbitMQ.
1212
//
1313
// The Initial Developer of the Original Code is GoPivotal, Inc.
14-
// Copyright (c) 2007-2013 GoPivotal, Inc. All rights reserved.
14+
// Copyright (c) 2007-2014 GoPivotal, Inc. All rights reserved.
1515
//
1616

1717

src/com/rabbitmq/client/Channel.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
// The Original Code is RabbitMQ.
1212
//
1313
// The Initial Developer of the Original Code is GoPivotal, Inc.
14-
// Copyright (c) 2007-2013 GoPivotal, Inc. All rights reserved.
14+
// Copyright (c) 2007-2014 GoPivotal, Inc. All rights reserved.
1515
//
1616

1717
package com.rabbitmq.client;

src/com/rabbitmq/client/Command.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
// The Original Code is RabbitMQ.
1212
//
1313
// The Initial Developer of the Original Code is GoPivotal, Inc.
14-
// Copyright (c) 2007-2013 GoPivotal, Inc. All rights reserved.
14+
// Copyright (c) 2007-2014 GoPivotal, Inc. All rights reserved.
1515
//
1616

1717

src/com/rabbitmq/client/ConfirmListener.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
// The Original Code is RabbitMQ.
1212
//
1313
// The Initial Developer of the Original Code is GoPivotal, Inc.
14-
// Copyright (c) 2007-2013 GoPivotal, Inc. All rights reserved.
14+
// Copyright (c) 2007-2014 GoPivotal, Inc. All rights reserved.
1515
//
1616

1717

0 commit comments

Comments
 (0)