Skip to content

Commit d4e7e53

Browse files
committed
Merge bug24144 into default
2 parents 996c2ee + 00157f9 commit d4e7e53

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/com/rabbitmq/tools/json/JSONReader.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
2-
Copyright 2006, 2007 Frank Carver
3-
Copyright 2007 Tony Garnock-Jones
2+
Copyright (c) 2006-2007 Frank Carver
3+
Copyright (c) 2007-2011 VMware, Inc. All Rights Reserved
44
55
Licensed under the Apache License, Version 2.0 (the "License");
66
you may not use this file except in compliance with the License.
@@ -207,7 +207,7 @@ private char unicode() {
207207
int value = 0;
208208
for (int i = 0; i < 4; ++i) {
209209
switch (next()) {
210-
case '0': case '1': case '2': case '3': case '4':
210+
case '0': case '1': case '2': case '3': case '4':
211211
case '5': case '6': case '7': case '8': case '9':
212212
value = (value << 4) + c - '0';
213213
break;

src/com/rabbitmq/tools/json/JSONWriter.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
2-
Copyright 2006, 2007 Frank Carver
3-
Copyright 2007 Tony Garnock-Jones
2+
Copyright (c) 2006-2007 Frank Carver
3+
Copyright (c) 2007-2011 VMware, Inc. All Rights Reserved
44
55
Licensed under the Apache License, Version 2.0 (the "License");
66
you may not use this file except in compliance with the License.

0 commit comments

Comments
 (0)