Skip to content

Commit 1b11482

Browse files
author
Steve Powell
committed
Update copyright in JSONReader and JSONWriter Java source.
1 parent 82492e1 commit 1b11482

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
Copyright 2006, 2007 Frank Carver
3-
Copyright 2007 Tony Garnock-Jones
3+
Copyright (c) 2007-20011 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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
Copyright 2006, 2007 Frank Carver
3-
Copyright 2007 Tony Garnock-Jones
3+
Copyright (c) 2007-20011 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)