-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhydrated_gson-step1.csv
We can't make this file beautiful and searchable because it's too large.
3231 lines (2352 loc) · 530 KB
/
hydrated_gson-step1.csv
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Datetime,Hash,Parent,Author,Commit Msg,Filepath,Filename,Removed Test Case
10/09/2008 21:29:06,"=HYPERLINK(""https://github.com/google/gson/commit/3b8404dac56c365cbf77034ec7d96588d89e9798"", ""3b8404dac56c365cbf77034ec7d96588d89e9798"")","=HYPERLINK(""https://github.com/google/gson/commit/0b9c739a7b2a2dcbeb264a30a271dcb67b72f773"", ""0b9c739a7b2a2dcbeb264a30a271dcb67b72f773"")",inder123@gmail.com,refactored String related functional tests out in a separate test class.,gson/src/test/java/com/google/gson/functional/ObjectTest.java,ObjectTest.java,testReallyLongStringsDeserialization
10/09/2008 21:29:06,"=HYPERLINK(""https://github.com/google/gson/commit/3b8404dac56c365cbf77034ec7d96588d89e9798"", ""3b8404dac56c365cbf77034ec7d96588d89e9798"")","=HYPERLINK(""https://github.com/google/gson/commit/0b9c739a7b2a2dcbeb264a30a271dcb67b72f773"", ""0b9c739a7b2a2dcbeb264a30a271dcb67b72f773"")",inder123@gmail.com,refactored String related functional tests out in a separate test class.,gson/src/test/java/com/google/gson/functional/ObjectTest.java,ObjectTest.java,parseLongJson
10/09/2008 21:29:06,"=HYPERLINK(""https://github.com/google/gson/commit/3b8404dac56c365cbf77034ec7d96588d89e9798"", ""3b8404dac56c365cbf77034ec7d96588d89e9798"")","=HYPERLINK(""https://github.com/google/gson/commit/0b9c739a7b2a2dcbeb264a30a271dcb67b72f773"", ""0b9c739a7b2a2dcbeb264a30a271dcb67b72f773"")",inder123@gmail.com,refactored String related functional tests out in a separate test class.,gson/src/test/java/com/google/gson/functional/ObjectTest.java,ObjectTest.java,ExceptionHolder
10/09/2008 21:29:06,"=HYPERLINK(""https://github.com/google/gson/commit/3b8404dac56c365cbf77034ec7d96588d89e9798"", ""3b8404dac56c365cbf77034ec7d96588d89e9798"")","=HYPERLINK(""https://github.com/google/gson/commit/0b9c739a7b2a2dcbeb264a30a271dcb67b72f773"", ""0b9c739a7b2a2dcbeb264a30a271dcb67b72f773"")",inder123@gmail.com,refactored String related functional tests out in a separate test class.,gson/src/test/java/com/google/gson/functional/ObjectTest.java,ObjectTest.java,ExceptionHolder
10/09/2008 21:29:06,"=HYPERLINK(""https://github.com/google/gson/commit/3b8404dac56c365cbf77034ec7d96588d89e9798"", ""3b8404dac56c365cbf77034ec7d96588d89e9798"")","=HYPERLINK(""https://github.com/google/gson/commit/0b9c739a7b2a2dcbeb264a30a271dcb67b72f773"", ""0b9c739a7b2a2dcbeb264a30a271dcb67b72f773"")",inder123@gmail.com,refactored String related functional tests out in a separate test class.,gson/src/test/java/com/google/gson/functional/PrimitiveTest.java,PrimitiveTest.java,testStringValueSerialization
10/09/2008 21:29:06,"=HYPERLINK(""https://github.com/google/gson/commit/3b8404dac56c365cbf77034ec7d96588d89e9798"", ""3b8404dac56c365cbf77034ec7d96588d89e9798"")","=HYPERLINK(""https://github.com/google/gson/commit/0b9c739a7b2a2dcbeb264a30a271dcb67b72f773"", ""0b9c739a7b2a2dcbeb264a30a271dcb67b72f773"")",inder123@gmail.com,refactored String related functional tests out in a separate test class.,gson/src/test/java/com/google/gson/functional/PrimitiveTest.java,PrimitiveTest.java,testStringValueDeserialization
10/09/2008 21:29:06,"=HYPERLINK(""https://github.com/google/gson/commit/3b8404dac56c365cbf77034ec7d96588d89e9798"", ""3b8404dac56c365cbf77034ec7d96588d89e9798"")","=HYPERLINK(""https://github.com/google/gson/commit/0b9c739a7b2a2dcbeb264a30a271dcb67b72f773"", ""0b9c739a7b2a2dcbeb264a30a271dcb67b72f773"")",inder123@gmail.com,refactored String related functional tests out in a separate test class.,gson/src/test/java/com/google/gson/functional/PrimitiveTest.java,PrimitiveTest.java,testSingleQuoteInStringSerialization
10/09/2008 21:29:06,"=HYPERLINK(""https://github.com/google/gson/commit/3b8404dac56c365cbf77034ec7d96588d89e9798"", ""3b8404dac56c365cbf77034ec7d96588d89e9798"")","=HYPERLINK(""https://github.com/google/gson/commit/0b9c739a7b2a2dcbeb264a30a271dcb67b72f773"", ""0b9c739a7b2a2dcbeb264a30a271dcb67b72f773"")",inder123@gmail.com,refactored String related functional tests out in a separate test class.,gson/src/test/java/com/google/gson/functional/PrimitiveTest.java,PrimitiveTest.java,testSingleQuoteInStringDeserialization
10/09/2008 21:29:06,"=HYPERLINK(""https://github.com/google/gson/commit/3b8404dac56c365cbf77034ec7d96588d89e9798"", ""3b8404dac56c365cbf77034ec7d96588d89e9798"")","=HYPERLINK(""https://github.com/google/gson/commit/0b9c739a7b2a2dcbeb264a30a271dcb67b72f773"", ""0b9c739a7b2a2dcbeb264a30a271dcb67b72f773"")",inder123@gmail.com,refactored String related functional tests out in a separate test class.,gson/src/test/java/com/google/gson/functional/PrimitiveTest.java,PrimitiveTest.java,testEscapingQuotesInStringSerialization
10/09/2008 21:29:06,"=HYPERLINK(""https://github.com/google/gson/commit/3b8404dac56c365cbf77034ec7d96588d89e9798"", ""3b8404dac56c365cbf77034ec7d96588d89e9798"")","=HYPERLINK(""https://github.com/google/gson/commit/0b9c739a7b2a2dcbeb264a30a271dcb67b72f773"", ""0b9c739a7b2a2dcbeb264a30a271dcb67b72f773"")",inder123@gmail.com,refactored String related functional tests out in a separate test class.,gson/src/test/java/com/google/gson/functional/PrimitiveTest.java,PrimitiveTest.java,testEscapingQuotesInStringDeserialization
10/09/2008 21:29:06,"=HYPERLINK(""https://github.com/google/gson/commit/3b8404dac56c365cbf77034ec7d96588d89e9798"", ""3b8404dac56c365cbf77034ec7d96588d89e9798"")","=HYPERLINK(""https://github.com/google/gson/commit/0b9c739a7b2a2dcbeb264a30a271dcb67b72f773"", ""0b9c739a7b2a2dcbeb264a30a271dcb67b72f773"")",inder123@gmail.com,refactored String related functional tests out in a separate test class.,gson/src/test/java/com/google/gson/functional/PrimitiveTest.java,PrimitiveTest.java,testStringValueAsSingleElementArraySerialization
10/09/2008 21:29:06,"=HYPERLINK(""https://github.com/google/gson/commit/3b8404dac56c365cbf77034ec7d96588d89e9798"", ""3b8404dac56c365cbf77034ec7d96588d89e9798"")","=HYPERLINK(""https://github.com/google/gson/commit/0b9c739a7b2a2dcbeb264a30a271dcb67b72f773"", ""0b9c739a7b2a2dcbeb264a30a271dcb67b72f773"")",inder123@gmail.com,refactored String related functional tests out in a separate test class.,gson/src/test/java/com/google/gson/functional/PrimitiveTest.java,PrimitiveTest.java,testStringValueAsSingleElementArrayDeserialization
10/09/2008 21:53:54,"=HYPERLINK(""https://github.com/google/gson/commit/1abf693b709f6315baacbbbf23d9f352c5a1083f"", ""1abf693b709f6315baacbbbf23d9f352c5a1083f"")","=HYPERLINK(""https://github.com/google/gson/commit/427c17a73208cf53c381e4e8099d4ef60c08cc9b"", ""427c17a73208cf53c381e4e8099d4ef60c08cc9b"")",inder123@gmail.com,"Fix for Issue 55 where GSON was unable to deserialize JSON with single quotes
(') used for field name/values. Gson now supports different fields with-in the
JSON to use either single quote or double quote. However, a single field name
or value must use ' or """" to delimit itself.",gson/src/test/java/com/google/gson/functional/ObjectTest.java,ObjectTest.java,testJsonInSingleQuotes
10/10/2008 18:22:27,"=HYPERLINK(""https://github.com/google/gson/commit/4d73459b7e2fa806610ff1110baf1da3c650c21d"", ""4d73459b7e2fa806610ff1110baf1da3c650c21d"")","=HYPERLINK(""https://github.com/google/gson/commit/cdd516345818eab763da02e1b9d7ec42404e98c4"", ""cdd516345818eab763da02e1b9d7ec42404e98c4"")",inder123@gmail.com,"moved performance tests under the metrics package and replaced the invalid JSON
string with \n with a valid one.",gson/src/test/java/com/google/gson/functional/StringTest.java,StringTest.java,testReallyLongStringsDeserialization
10/10/2008 18:22:27,"=HYPERLINK(""https://github.com/google/gson/commit/4d73459b7e2fa806610ff1110baf1da3c650c21d"", ""4d73459b7e2fa806610ff1110baf1da3c650c21d"")","=HYPERLINK(""https://github.com/google/gson/commit/cdd516345818eab763da02e1b9d7ec42404e98c4"", ""cdd516345818eab763da02e1b9d7ec42404e98c4"")",inder123@gmail.com,"moved performance tests under the metrics package and replaced the invalid JSON
string with \n with a valid one.",gson/src/test/java/com/google/gson/functional/StringTest.java,StringTest.java,parseLongJson
10/10/2008 18:22:27,"=HYPERLINK(""https://github.com/google/gson/commit/4d73459b7e2fa806610ff1110baf1da3c650c21d"", ""4d73459b7e2fa806610ff1110baf1da3c650c21d"")","=HYPERLINK(""https://github.com/google/gson/commit/cdd516345818eab763da02e1b9d7ec42404e98c4"", ""cdd516345818eab763da02e1b9d7ec42404e98c4"")",inder123@gmail.com,"moved performance tests under the metrics package and replaced the invalid JSON
string with \n with a valid one.",gson/src/test/java/com/google/gson/functional/StringTest.java,StringTest.java,ExceptionHolder
10/10/2008 18:22:27,"=HYPERLINK(""https://github.com/google/gson/commit/4d73459b7e2fa806610ff1110baf1da3c650c21d"", ""4d73459b7e2fa806610ff1110baf1da3c650c21d"")","=HYPERLINK(""https://github.com/google/gson/commit/cdd516345818eab763da02e1b9d7ec42404e98c4"", ""cdd516345818eab763da02e1b9d7ec42404e98c4"")",inder123@gmail.com,"moved performance tests under the metrics package and replaced the invalid JSON
string with \n with a valid one.",gson/src/test/java/com/google/gson/functional/StringTest.java,StringTest.java,ExceptionHolder
10/13/2008 14:14:57,"=HYPERLINK(""https://github.com/google/gson/commit/add960644ac204fffbb112d7d01097dbaba38e8f"", ""add960644ac204fffbb112d7d01097dbaba38e8f"")","=HYPERLINK(""https://github.com/google/gson/commit/2b9fd47b720f0743d69dfcc48bc04b471e37d240"", ""2b9fd47b720f0743d69dfcc48bc04b471e37d240"")",inder123@gmail.com,disabled tests for issue 43 and 44 since those are deferred for a subsequent release.,gson/src/test/java/com/google/gson/functional/CustomTypeAdaptersTest.java,CustomTypeAdaptersTest.java,testCustomSerializersOfSelf
10/13/2008 14:14:57,"=HYPERLINK(""https://github.com/google/gson/commit/add960644ac204fffbb112d7d01097dbaba38e8f"", ""add960644ac204fffbb112d7d01097dbaba38e8f"")","=HYPERLINK(""https://github.com/google/gson/commit/2b9fd47b720f0743d69dfcc48bc04b471e37d240"", ""2b9fd47b720f0743d69dfcc48bc04b471e37d240"")",inder123@gmail.com,disabled tests for issue 43 and 44 since those are deferred for a subsequent release.,gson/src/test/java/com/google/gson/functional/CustomTypeAdaptersTest.java,CustomTypeAdaptersTest.java,testCustomDeserializersOfSelf
10/14/2008 14:37:33,"=HYPERLINK(""https://github.com/google/gson/commit/9f5a2086deafa340ac12e78d44c8c23b19483f9d"", ""9f5a2086deafa340ac12e78d44c8c23b19483f9d"")","=HYPERLINK(""https://github.com/google/gson/commit/745c8e2a83360f5f71904d1be828fd7041f42222"", ""745c8e2a83360f5f71904d1be828fd7041f42222"")",inder123@gmail.com,"updated Gson version to 1.2.2
Added a test to ensure that CustomTypeAdapters are not applied automatically
for SubClasses.",gson/src/test/java/com/google/gson/functional/CustomTypeAdaptersTest.java,CustomTypeAdaptersTest.java,testCustomTypeAdapterAppliesToSubClasses
10/20/2008 15:09:42,"=HYPERLINK(""https://github.com/google/gson/commit/9dfa454f6da6e88b51dba7840881feb874dbbdef"", ""9dfa454f6da6e88b51dba7840881feb874dbbdef"")","=HYPERLINK(""https://github.com/google/gson/commit/95861175a8b175215b753e021ff361609a2d5281"", ""95861175a8b175215b753e021ff361609a2d5281"")",inder123@gmail.com,Fixed issue 63 where Gson could not operate in a thread-safe manner. Resolved the issue by recreating ObjectNavigatorFactory for each call instead of reusing the same object everywhere. This is needed since ObjectNavigatorFactory had MemoryRefStack that was incorrectly being shared across calls.,gson/src/test/java/com/google/gson/functional/ConcurrencyTest.java,ConcurrencyTest.java,testSingleThread
10/20/2008 15:09:42,"=HYPERLINK(""https://github.com/google/gson/commit/9dfa454f6da6e88b51dba7840881feb874dbbdef"", ""9dfa454f6da6e88b51dba7840881feb874dbbdef"")","=HYPERLINK(""https://github.com/google/gson/commit/95861175a8b175215b753e021ff361609a2d5281"", ""95861175a8b175215b753e021ff361609a2d5281"")",inder123@gmail.com,Fixed issue 63 where Gson could not operate in a thread-safe manner. Resolved the issue by recreating ObjectNavigatorFactory for each call instead of reusing the same object everywhere. This is needed since ObjectNavigatorFactory had MemoryRefStack that was incorrectly being shared across calls.,gson/src/test/java/com/google/gson/functional/ConcurrencyTest.java,ConcurrencyTest.java,testMultiThread
10/21/2008 17:37:41,"=HYPERLINK(""https://github.com/google/gson/commit/3cd665b199ff77bbeb4aa45d1e1816ec37d942c7"", ""3cd665b199ff77bbeb4aa45d1e1816ec37d942c7"")","=HYPERLINK(""https://github.com/google/gson/commit/9dfa454f6da6e88b51dba7840881feb874dbbdef"", ""9dfa454f6da6e88b51dba7840881feb874dbbdef"")",inder123@gmail.com,"Added support for serialization of raw maps.
Also, refactored tests for maps in MapTest class.",gson/src/test/java/com/google/gson/functional/DefaultTypeAdaptersTest.java,DefaultTypeAdaptersTest.java,testMapSerialization
10/21/2008 17:37:41,"=HYPERLINK(""https://github.com/google/gson/commit/3cd665b199ff77bbeb4aa45d1e1816ec37d942c7"", ""3cd665b199ff77bbeb4aa45d1e1816ec37d942c7"")","=HYPERLINK(""https://github.com/google/gson/commit/9dfa454f6da6e88b51dba7840881feb874dbbdef"", ""9dfa454f6da6e88b51dba7840881feb874dbbdef"")",inder123@gmail.com,"Added support for serialization of raw maps.
Also, refactored tests for maps in MapTest class.",gson/src/test/java/com/google/gson/functional/DefaultTypeAdaptersTest.java,DefaultTypeAdaptersTest.java,testMapDeserialization
10/21/2008 17:37:41,"=HYPERLINK(""https://github.com/google/gson/commit/3cd665b199ff77bbeb4aa45d1e1816ec37d942c7"", ""3cd665b199ff77bbeb4aa45d1e1816ec37d942c7"")","=HYPERLINK(""https://github.com/google/gson/commit/9dfa454f6da6e88b51dba7840881feb874dbbdef"", ""9dfa454f6da6e88b51dba7840881feb874dbbdef"")",inder123@gmail.com,"Added support for serialization of raw maps.
Also, refactored tests for maps in MapTest class.",gson/src/test/java/com/google/gson/functional/DefaultTypeAdaptersTest.java,DefaultTypeAdaptersTest.java,testMapSerializationEmpty
11/13/2008 20:17:19,"=HYPERLINK(""https://github.com/google/gson/commit/bc2c25f235808c7e90d9bde6b2795997405af0cf"", ""bc2c25f235808c7e90d9bde6b2795997405af0cf"")","=HYPERLINK(""https://github.com/google/gson/commit/9245bebdba9a3227674f3c0b08d86165891f02cc"", ""9245bebdba9a3227674f3c0b08d86165891f02cc"")",inder123@gmail.com,"Removed ExceptionWrapper from serializers.
This is done since it is improper to throw a parse exception from serializers. Moreover, the serializers dont deal with external input, they deal with classes, so they need not guard against spurious input.",gson/src/test/java/com/google/gson/JsonSerializerExceptionWrapperTest.java,JsonSerializerExceptionWrapperTest.java,testRethrowJsonParseException
11/13/2008 20:17:19,"=HYPERLINK(""https://github.com/google/gson/commit/bc2c25f235808c7e90d9bde6b2795997405af0cf"", ""bc2c25f235808c7e90d9bde6b2795997405af0cf"")","=HYPERLINK(""https://github.com/google/gson/commit/9245bebdba9a3227674f3c0b08d86165891f02cc"", ""9245bebdba9a3227674f3c0b08d86165891f02cc"")",inder123@gmail.com,"Removed ExceptionWrapper from serializers.
This is done since it is improper to throw a parse exception from serializers. Moreover, the serializers dont deal with external input, they deal with classes, so they need not guard against spurious input.",gson/src/test/java/com/google/gson/JsonSerializerExceptionWrapperTest.java,JsonSerializerExceptionWrapperTest.java,testWrappedExceptionPropagation
11/13/2008 20:17:19,"=HYPERLINK(""https://github.com/google/gson/commit/bc2c25f235808c7e90d9bde6b2795997405af0cf"", ""bc2c25f235808c7e90d9bde6b2795997405af0cf"")","=HYPERLINK(""https://github.com/google/gson/commit/9245bebdba9a3227674f3c0b08d86165891f02cc"", ""9245bebdba9a3227674f3c0b08d86165891f02cc"")",inder123@gmail.com,"Removed ExceptionWrapper from serializers.
This is done since it is improper to throw a parse exception from serializers. Moreover, the serializers dont deal with external input, they deal with classes, so they need not guard against spurious input.",gson/src/test/java/com/google/gson/JsonSerializerExceptionWrapperTest.java,JsonSerializerExceptionWrapperTest.java,testProperSerialization
11/13/2008 20:17:19,"=HYPERLINK(""https://github.com/google/gson/commit/bc2c25f235808c7e90d9bde6b2795997405af0cf"", ""bc2c25f235808c7e90d9bde6b2795997405af0cf"")","=HYPERLINK(""https://github.com/google/gson/commit/9245bebdba9a3227674f3c0b08d86165891f02cc"", ""9245bebdba9a3227674f3c0b08d86165891f02cc"")",inder123@gmail.com,"Removed ExceptionWrapper from serializers.
This is done since it is improper to throw a parse exception from serializers. Moreover, the serializers dont deal with external input, they deal with classes, so they need not guard against spurious input.",gson/src/test/java/com/google/gson/JsonSerializerExceptionWrapperTest.java,JsonSerializerExceptionWrapperTest.java,ExceptionJsonSerializer
11/13/2008 20:17:19,"=HYPERLINK(""https://github.com/google/gson/commit/bc2c25f235808c7e90d9bde6b2795997405af0cf"", ""bc2c25f235808c7e90d9bde6b2795997405af0cf"")","=HYPERLINK(""https://github.com/google/gson/commit/9245bebdba9a3227674f3c0b08d86165891f02cc"", ""9245bebdba9a3227674f3c0b08d86165891f02cc"")",inder123@gmail.com,"Removed ExceptionWrapper from serializers.
This is done since it is improper to throw a parse exception from serializers. Moreover, the serializers dont deal with external input, they deal with classes, so they need not guard against spurious input.",gson/src/test/java/com/google/gson/JsonSerializerExceptionWrapperTest.java,JsonSerializerExceptionWrapperTest.java,serialize
11/14/2008 14:52:57,"=HYPERLINK(""https://github.com/google/gson/commit/9a69560d9f1f8ab89277259c221193acf7cfcffd"", ""9a69560d9f1f8ab89277259c221193acf7cfcffd"")","=HYPERLINK(""https://github.com/google/gson/commit/e4ea6b1fd052705a8c2088ce36ee84db1961b4af"", ""e4ea6b1fd052705a8c2088ce36ee84db1961b4af"")",inder123@gmail.com,"During serialization, we now dont call custom serializers the field is null.
During deserialization, we do not call custom deserializer if the field is to be set to null. Moreover, changed the logic to set fields to null only if explicitly indicated in the incoming Json. This is different from past behavior where all fields not mentioned in incoming Json were set to null. Now they are set to whatever the default constructor will do.",gson/src/test/java/com/google/gson/functional/MapTest.java,MapTest.java,testMapSubclassDeserialization
11/14/2008 23:11:28,"=HYPERLINK(""https://github.com/google/gson/commit/cf2a457af7b0422e7728e0d55a4e794048af5a6b"", ""cf2a457af7b0422e7728e0d55a4e794048af5a6b"")","=HYPERLINK(""https://github.com/google/gson/commit/0d8150fe52eba34a0472c47be71587885ba4a94c"", ""0d8150fe52eba34a0472c47be71587885ba4a94c"")",joel.leitch@gmail.com,Removed the TypeAdapter object from GSON now that the primitive objects and fields are created by a custom Type Adapter.,gson/src/test/java/com/google/gson/PrimitiveTypeAdapterTest.java,PrimitiveTypeAdapterTest.java,setUp
11/14/2008 23:11:28,"=HYPERLINK(""https://github.com/google/gson/commit/cf2a457af7b0422e7728e0d55a4e794048af5a6b"", ""cf2a457af7b0422e7728e0d55a4e794048af5a6b"")","=HYPERLINK(""https://github.com/google/gson/commit/0d8150fe52eba34a0472c47be71587885ba4a94c"", ""0d8150fe52eba34a0472c47be71587885ba4a94c"")",joel.leitch@gmail.com,Removed the TypeAdapter object from GSON now that the primitive objects and fields are created by a custom Type Adapter.,gson/src/test/java/com/google/gson/PrimitiveTypeAdapterTest.java,PrimitiveTypeAdapterTest.java,testImproperConversion
11/14/2008 23:11:28,"=HYPERLINK(""https://github.com/google/gson/commit/cf2a457af7b0422e7728e0d55a4e794048af5a6b"", ""cf2a457af7b0422e7728e0d55a4e794048af5a6b"")","=HYPERLINK(""https://github.com/google/gson/commit/0d8150fe52eba34a0472c47be71587885ba4a94c"", ""0d8150fe52eba34a0472c47be71587885ba4a94c"")",joel.leitch@gmail.com,Removed the TypeAdapter object from GSON now that the primitive objects and fields are created by a custom Type Adapter.,gson/src/test/java/com/google/gson/PrimitiveTypeAdapterTest.java,PrimitiveTypeAdapterTest.java,testImproperCharacterConversion
11/14/2008 23:11:28,"=HYPERLINK(""https://github.com/google/gson/commit/cf2a457af7b0422e7728e0d55a4e794048af5a6b"", ""cf2a457af7b0422e7728e0d55a4e794048af5a6b"")","=HYPERLINK(""https://github.com/google/gson/commit/0d8150fe52eba34a0472c47be71587885ba4a94c"", ""0d8150fe52eba34a0472c47be71587885ba4a94c"")",joel.leitch@gmail.com,Removed the TypeAdapter object from GSON now that the primitive objects and fields are created by a custom Type Adapter.,gson/src/test/java/com/google/gson/PrimitiveTypeAdapterTest.java,PrimitiveTypeAdapterTest.java,testProperPrimitiveConversions
11/14/2008 23:11:28,"=HYPERLINK(""https://github.com/google/gson/commit/cf2a457af7b0422e7728e0d55a4e794048af5a6b"", ""cf2a457af7b0422e7728e0d55a4e794048af5a6b"")","=HYPERLINK(""https://github.com/google/gson/commit/0d8150fe52eba34a0472c47be71587885ba4a94c"", ""0d8150fe52eba34a0472c47be71587885ba4a94c"")",joel.leitch@gmail.com,Removed the TypeAdapter object from GSON now that the primitive objects and fields are created by a custom Type Adapter.,gson/src/test/java/com/google/gson/PrimitiveTypeAdapterTest.java,PrimitiveTypeAdapterTest.java,testProperEnumConversions
12/18/2008 17:41:44,"=HYPERLINK(""https://github.com/google/gson/commit/6dbdb272c0950d1bd17c3e3b5e38b385d1373eb2"", ""6dbdb272c0950d1bd17c3e3b5e38b385d1373eb2"")","=HYPERLINK(""https://github.com/google/gson/commit/09720f28cfc165fd1227d8b7be6ec3468d98b636"", ""09720f28cfc165fd1227d8b7be6ec3468d98b636"")",inder123@gmail.com,Added checks to ensure that we do not serialize NaN or postiive or negative infinity for floats.,gson/src/test/java/com/google/gson/functional/PrimitiveTest.java,PrimitiveTest.java,testNaNSerializationNotSupported
12/18/2008 17:41:44,"=HYPERLINK(""https://github.com/google/gson/commit/6dbdb272c0950d1bd17c3e3b5e38b385d1373eb2"", ""6dbdb272c0950d1bd17c3e3b5e38b385d1373eb2"")","=HYPERLINK(""https://github.com/google/gson/commit/09720f28cfc165fd1227d8b7be6ec3468d98b636"", ""09720f28cfc165fd1227d8b7be6ec3468d98b636"")",inder123@gmail.com,Added checks to ensure that we do not serialize NaN or postiive or negative infinity for floats.,gson/src/test/java/com/google/gson/functional/PrimitiveTest.java,PrimitiveTest.java,testNaNDeserializationNotSupported
12/18/2008 17:41:44,"=HYPERLINK(""https://github.com/google/gson/commit/6dbdb272c0950d1bd17c3e3b5e38b385d1373eb2"", ""6dbdb272c0950d1bd17c3e3b5e38b385d1373eb2"")","=HYPERLINK(""https://github.com/google/gson/commit/09720f28cfc165fd1227d8b7be6ec3468d98b636"", ""09720f28cfc165fd1227d8b7be6ec3468d98b636"")",inder123@gmail.com,Added checks to ensure that we do not serialize NaN or postiive or negative infinity for floats.,gson/src/test/java/com/google/gson/functional/PrimitiveTest.java,PrimitiveTest.java,testInfinitySerializationNotSupported
12/18/2008 17:41:44,"=HYPERLINK(""https://github.com/google/gson/commit/6dbdb272c0950d1bd17c3e3b5e38b385d1373eb2"", ""6dbdb272c0950d1bd17c3e3b5e38b385d1373eb2"")","=HYPERLINK(""https://github.com/google/gson/commit/09720f28cfc165fd1227d8b7be6ec3468d98b636"", ""09720f28cfc165fd1227d8b7be6ec3468d98b636"")",inder123@gmail.com,Added checks to ensure that we do not serialize NaN or postiive or negative infinity for floats.,gson/src/test/java/com/google/gson/functional/PrimitiveTest.java,PrimitiveTest.java,testInfinityDeserializationNotSupported
12/19/2008 11:46:24,"=HYPERLINK(""https://github.com/google/gson/commit/53f7d26b6d442467d54f0e61fdf030cd395011f7"", ""53f7d26b6d442467d54f0e61fdf030cd395011f7"")","=HYPERLINK(""https://github.com/google/gson/commit/f7e4d5e4bbdb10ef3215c66c0df4ca3828f99768"", ""f7e4d5e4bbdb10ef3215c66c0df4ca3828f99768"")",inder123@gmail.com,"removed tests for serialization of BigDecimal NaN, positive and negative infinity since BigDecimal can not be created with these values.",gson/src/test/java/com/google/gson/functional/PrimitiveTest.java,PrimitiveTest.java,testBigDecimalNaNSerializationNotSupported
12/19/2008 11:46:24,"=HYPERLINK(""https://github.com/google/gson/commit/53f7d26b6d442467d54f0e61fdf030cd395011f7"", ""53f7d26b6d442467d54f0e61fdf030cd395011f7"")","=HYPERLINK(""https://github.com/google/gson/commit/f7e4d5e4bbdb10ef3215c66c0df4ca3828f99768"", ""f7e4d5e4bbdb10ef3215c66c0df4ca3828f99768"")",inder123@gmail.com,"removed tests for serialization of BigDecimal NaN, positive and negative infinity since BigDecimal can not be created with these values.",gson/src/test/java/com/google/gson/functional/PrimitiveTest.java,PrimitiveTest.java,testBigDecimalInfinitySerializationNotSupported
12/19/2008 11:46:24,"=HYPERLINK(""https://github.com/google/gson/commit/53f7d26b6d442467d54f0e61fdf030cd395011f7"", ""53f7d26b6d442467d54f0e61fdf030cd395011f7"")","=HYPERLINK(""https://github.com/google/gson/commit/f7e4d5e4bbdb10ef3215c66c0df4ca3828f99768"", ""f7e4d5e4bbdb10ef3215c66c0df4ca3828f99768"")",inder123@gmail.com,"removed tests for serialization of BigDecimal NaN, positive and negative infinity since BigDecimal can not be created with these values.",gson/src/test/java/com/google/gson/functional/PrimitiveTest.java,PrimitiveTest.java,testNegativeInfinityBigDecimalSerializationNotSupported
12/19/2008 19:26:14,"=HYPERLINK(""https://github.com/google/gson/commit/51881c7f4a60d62e0b71ff0dfef78c18bdb1005f"", ""51881c7f4a60d62e0b71ff0dfef78c18bdb1005f"")","=HYPERLINK(""https://github.com/google/gson/commit/362a94ec74f81a8c9f2a3f42d1a53d9400be2e69"", ""362a94ec74f81a8c9f2a3f42d1a53d9400be2e69"")",inder123@gmail.com,"Added a GsonBuilder setting to enable serialization of special double types, NaN, Infinity, and -Infinity.",gson/src/test/java/com/google/gson/functional/PrimitiveTest.java,PrimitiveTest.java,testDoubleNaNSerializationNotSupported
12/19/2008 19:26:14,"=HYPERLINK(""https://github.com/google/gson/commit/51881c7f4a60d62e0b71ff0dfef78c18bdb1005f"", ""51881c7f4a60d62e0b71ff0dfef78c18bdb1005f"")","=HYPERLINK(""https://github.com/google/gson/commit/362a94ec74f81a8c9f2a3f42d1a53d9400be2e69"", ""362a94ec74f81a8c9f2a3f42d1a53d9400be2e69"")",inder123@gmail.com,"Added a GsonBuilder setting to enable serialization of special double types, NaN, Infinity, and -Infinity.",gson/src/test/java/com/google/gson/functional/PrimitiveTest.java,PrimitiveTest.java,testDoubleNaNDeserializationNotSupported
12/19/2008 19:26:14,"=HYPERLINK(""https://github.com/google/gson/commit/51881c7f4a60d62e0b71ff0dfef78c18bdb1005f"", ""51881c7f4a60d62e0b71ff0dfef78c18bdb1005f"")","=HYPERLINK(""https://github.com/google/gson/commit/362a94ec74f81a8c9f2a3f42d1a53d9400be2e69"", ""362a94ec74f81a8c9f2a3f42d1a53d9400be2e69"")",inder123@gmail.com,"Added a GsonBuilder setting to enable serialization of special double types, NaN, Infinity, and -Infinity.",gson/src/test/java/com/google/gson/functional/PrimitiveTest.java,PrimitiveTest.java,testFloatNaNSerializationNotSupported
12/19/2008 19:26:14,"=HYPERLINK(""https://github.com/google/gson/commit/51881c7f4a60d62e0b71ff0dfef78c18bdb1005f"", ""51881c7f4a60d62e0b71ff0dfef78c18bdb1005f"")","=HYPERLINK(""https://github.com/google/gson/commit/362a94ec74f81a8c9f2a3f42d1a53d9400be2e69"", ""362a94ec74f81a8c9f2a3f42d1a53d9400be2e69"")",inder123@gmail.com,"Added a GsonBuilder setting to enable serialization of special double types, NaN, Infinity, and -Infinity.",gson/src/test/java/com/google/gson/functional/PrimitiveTest.java,PrimitiveTest.java,testFloatNaNDeserializationNotSupported
12/19/2008 19:26:14,"=HYPERLINK(""https://github.com/google/gson/commit/51881c7f4a60d62e0b71ff0dfef78c18bdb1005f"", ""51881c7f4a60d62e0b71ff0dfef78c18bdb1005f"")","=HYPERLINK(""https://github.com/google/gson/commit/362a94ec74f81a8c9f2a3f42d1a53d9400be2e69"", ""362a94ec74f81a8c9f2a3f42d1a53d9400be2e69"")",inder123@gmail.com,"Added a GsonBuilder setting to enable serialization of special double types, NaN, Infinity, and -Infinity.",gson/src/test/java/com/google/gson/functional/PrimitiveTest.java,PrimitiveTest.java,testDoubleInfinitySerializationNotSupported
12/19/2008 19:26:14,"=HYPERLINK(""https://github.com/google/gson/commit/51881c7f4a60d62e0b71ff0dfef78c18bdb1005f"", ""51881c7f4a60d62e0b71ff0dfef78c18bdb1005f"")","=HYPERLINK(""https://github.com/google/gson/commit/362a94ec74f81a8c9f2a3f42d1a53d9400be2e69"", ""362a94ec74f81a8c9f2a3f42d1a53d9400be2e69"")",inder123@gmail.com,"Added a GsonBuilder setting to enable serialization of special double types, NaN, Infinity, and -Infinity.",gson/src/test/java/com/google/gson/functional/PrimitiveTest.java,PrimitiveTest.java,testDoubleInfinityDeserializationNotSupported
12/19/2008 19:26:14,"=HYPERLINK(""https://github.com/google/gson/commit/51881c7f4a60d62e0b71ff0dfef78c18bdb1005f"", ""51881c7f4a60d62e0b71ff0dfef78c18bdb1005f"")","=HYPERLINK(""https://github.com/google/gson/commit/362a94ec74f81a8c9f2a3f42d1a53d9400be2e69"", ""362a94ec74f81a8c9f2a3f42d1a53d9400be2e69"")",inder123@gmail.com,"Added a GsonBuilder setting to enable serialization of special double types, NaN, Infinity, and -Infinity.",gson/src/test/java/com/google/gson/functional/PrimitiveTest.java,PrimitiveTest.java,testFloatInfinitySerializationNotSupported
12/19/2008 19:26:14,"=HYPERLINK(""https://github.com/google/gson/commit/51881c7f4a60d62e0b71ff0dfef78c18bdb1005f"", ""51881c7f4a60d62e0b71ff0dfef78c18bdb1005f"")","=HYPERLINK(""https://github.com/google/gson/commit/362a94ec74f81a8c9f2a3f42d1a53d9400be2e69"", ""362a94ec74f81a8c9f2a3f42d1a53d9400be2e69"")",inder123@gmail.com,"Added a GsonBuilder setting to enable serialization of special double types, NaN, Infinity, and -Infinity.",gson/src/test/java/com/google/gson/functional/PrimitiveTest.java,PrimitiveTest.java,testFloatInfinityDeserializationNotSupported
12/19/2008 19:26:14,"=HYPERLINK(""https://github.com/google/gson/commit/51881c7f4a60d62e0b71ff0dfef78c18bdb1005f"", ""51881c7f4a60d62e0b71ff0dfef78c18bdb1005f"")","=HYPERLINK(""https://github.com/google/gson/commit/362a94ec74f81a8c9f2a3f42d1a53d9400be2e69"", ""362a94ec74f81a8c9f2a3f42d1a53d9400be2e69"")",inder123@gmail.com,"Added a GsonBuilder setting to enable serialization of special double types, NaN, Infinity, and -Infinity.",gson/src/test/java/com/google/gson/functional/PrimitiveTest.java,PrimitiveTest.java,testNegativeInfinitySerializationNotSupported
12/19/2008 19:26:14,"=HYPERLINK(""https://github.com/google/gson/commit/51881c7f4a60d62e0b71ff0dfef78c18bdb1005f"", ""51881c7f4a60d62e0b71ff0dfef78c18bdb1005f"")","=HYPERLINK(""https://github.com/google/gson/commit/362a94ec74f81a8c9f2a3f42d1a53d9400be2e69"", ""362a94ec74f81a8c9f2a3f42d1a53d9400be2e69"")",inder123@gmail.com,"Added a GsonBuilder setting to enable serialization of special double types, NaN, Infinity, and -Infinity.",gson/src/test/java/com/google/gson/functional/PrimitiveTest.java,PrimitiveTest.java,testNegativeInfinityDeserializationNotSupported
12/19/2008 19:26:14,"=HYPERLINK(""https://github.com/google/gson/commit/51881c7f4a60d62e0b71ff0dfef78c18bdb1005f"", ""51881c7f4a60d62e0b71ff0dfef78c18bdb1005f"")","=HYPERLINK(""https://github.com/google/gson/commit/362a94ec74f81a8c9f2a3f42d1a53d9400be2e69"", ""362a94ec74f81a8c9f2a3f42d1a53d9400be2e69"")",inder123@gmail.com,"Added a GsonBuilder setting to enable serialization of special double types, NaN, Infinity, and -Infinity.",gson/src/test/java/com/google/gson/functional/PrimitiveTest.java,PrimitiveTest.java,testNegativeInfinityFloatSerializationNotSupported
12/19/2008 19:26:14,"=HYPERLINK(""https://github.com/google/gson/commit/51881c7f4a60d62e0b71ff0dfef78c18bdb1005f"", ""51881c7f4a60d62e0b71ff0dfef78c18bdb1005f"")","=HYPERLINK(""https://github.com/google/gson/commit/362a94ec74f81a8c9f2a3f42d1a53d9400be2e69"", ""362a94ec74f81a8c9f2a3f42d1a53d9400be2e69"")",inder123@gmail.com,"Added a GsonBuilder setting to enable serialization of special double types, NaN, Infinity, and -Infinity.",gson/src/test/java/com/google/gson/functional/PrimitiveTest.java,PrimitiveTest.java,testNegativeInfinityFloatDeserializationNotSupported
12/19/2008 19:26:14,"=HYPERLINK(""https://github.com/google/gson/commit/51881c7f4a60d62e0b71ff0dfef78c18bdb1005f"", ""51881c7f4a60d62e0b71ff0dfef78c18bdb1005f"")","=HYPERLINK(""https://github.com/google/gson/commit/362a94ec74f81a8c9f2a3f42d1a53d9400be2e69"", ""362a94ec74f81a8c9f2a3f42d1a53d9400be2e69"")",inder123@gmail.com,"Added a GsonBuilder setting to enable serialization of special double types, NaN, Infinity, and -Infinity.",gson/src/test/java/com/google/gson/functional/PrimitiveTest.java,PrimitiveTest.java,testNegativeInfinityBigDecimalDeserializationNotSupported
12/28/2008 17:14:44,"=HYPERLINK(""https://github.com/google/gson/commit/9612bb3601f77611c35ed7b504f0064b98259d3f"", ""9612bb3601f77611c35ed7b504f0064b98259d3f"")","=HYPERLINK(""https://github.com/google/gson/commit/73d93e332251ccf3619b3b6d2e7b1529e902e78d"", ""73d93e332251ccf3619b3b6d2e7b1529e902e78d"")",joel.leitch@gmail.com,Removing test file that I didn't mean to add in r355.,gson/src/main/java/com/google/gson/TestCharacters.java,TestCharacters.java,main
12/30/2008 12:54:33,"=HYPERLINK(""https://github.com/google/gson/commit/05f54f35520bb0718dcaa12333520f4c2aaf3cc7"", ""05f54f35520bb0718dcaa12333520f4c2aaf3cc7"")","=HYPERLINK(""https://github.com/google/gson/commit/9612bb3601f77611c35ed7b504f0064b98259d3f"", ""9612bb3601f77611c35ed7b504f0064b98259d3f"")",inder123@gmail.com,Incorporated code review comments from r350,gson/src/test/java/com/google/gson/functional/FieldExclusionTest.java,FieldExclusionTest.java,TestInnerClass
12/30/2008 12:54:33,"=HYPERLINK(""https://github.com/google/gson/commit/05f54f35520bb0718dcaa12333520f4c2aaf3cc7"", ""05f54f35520bb0718dcaa12333520f4c2aaf3cc7"")","=HYPERLINK(""https://github.com/google/gson/commit/9612bb3601f77611c35ed7b504f0064b98259d3f"", ""9612bb3601f77611c35ed7b504f0064b98259d3f"")",inder123@gmail.com,Incorporated code review comments from r350,gson/src/test/java/com/google/gson/functional/FieldExclusionTest.java,FieldExclusionTest.java,TestStaticNestedClass
12/30/2008 12:54:33,"=HYPERLINK(""https://github.com/google/gson/commit/05f54f35520bb0718dcaa12333520f4c2aaf3cc7"", ""05f54f35520bb0718dcaa12333520f4c2aaf3cc7"")","=HYPERLINK(""https://github.com/google/gson/commit/9612bb3601f77611c35ed7b504f0064b98259d3f"", ""9612bb3601f77611c35ed7b504f0064b98259d3f"")",inder123@gmail.com,Incorporated code review comments from r350,gson/src/test/java/com/google/gson/functional/FieldExclusionTest.java,FieldExclusionTest.java,toJson
12/30/2008 16:42:36,"=HYPERLINK(""https://github.com/google/gson/commit/3690d362b9e3007e390d38092ce339e8a1145781"", ""3690d362b9e3007e390d38092ce339e8a1145781"")","=HYPERLINK(""https://github.com/google/gson/commit/e839336eea7aa7e414108a6d33703349adc7a705"", ""e839336eea7aa7e414108a6d33703349adc7a705"")",inder123@gmail.com,incorporated feedback from r358,gson/src/test/java/com/google/gson/FunctionalWithInternalDependenciesTest.java,PrettyPrintingTest.java,setUp
12/30/2008 16:42:36,"=HYPERLINK(""https://github.com/google/gson/commit/3690d362b9e3007e390d38092ce339e8a1145781"", ""3690d362b9e3007e390d38092ce339e8a1145781"")","=HYPERLINK(""https://github.com/google/gson/commit/e839336eea7aa7e414108a6d33703349adc7a705"", ""e839336eea7aa7e414108a6d33703349adc7a705"")",inder123@gmail.com,incorporated feedback from r358,gson/src/test/java/com/google/gson/FunctionalWithInternalDependenciesTest.java,PrettyPrintingTest.java,testAnonymousLocalClassesSerialization
12/30/2008 16:42:36,"=HYPERLINK(""https://github.com/google/gson/commit/3690d362b9e3007e390d38092ce339e8a1145781"", ""3690d362b9e3007e390d38092ce339e8a1145781"")","=HYPERLINK(""https://github.com/google/gson/commit/e839336eea7aa7e414108a6d33703349adc7a705"", ""e839336eea7aa7e414108a6d33703349adc7a705"")",inder123@gmail.com,incorporated feedback from r358,gson/src/test/java/com/google/gson/FunctionalWithInternalDependenciesTest.java,PrettyPrintingTest.java,testPrettyPrintList
12/30/2008 16:42:36,"=HYPERLINK(""https://github.com/google/gson/commit/3690d362b9e3007e390d38092ce339e8a1145781"", ""3690d362b9e3007e390d38092ce339e8a1145781"")","=HYPERLINK(""https://github.com/google/gson/commit/e839336eea7aa7e414108a6d33703349adc7a705"", ""e839336eea7aa7e414108a6d33703349adc7a705"")",inder123@gmail.com,incorporated feedback from r358,gson/src/test/java/com/google/gson/FunctionalWithInternalDependenciesTest.java,PrettyPrintingTest.java,testPrettyPrintArrayOfObjects
12/30/2008 16:42:36,"=HYPERLINK(""https://github.com/google/gson/commit/3690d362b9e3007e390d38092ce339e8a1145781"", ""3690d362b9e3007e390d38092ce339e8a1145781"")","=HYPERLINK(""https://github.com/google/gson/commit/e839336eea7aa7e414108a6d33703349adc7a705"", ""e839336eea7aa7e414108a6d33703349adc7a705"")",inder123@gmail.com,incorporated feedback from r358,gson/src/test/java/com/google/gson/FunctionalWithInternalDependenciesTest.java,PrettyPrintingTest.java,testPrettyPrintArrayOfPrimitives
12/30/2008 16:42:36,"=HYPERLINK(""https://github.com/google/gson/commit/3690d362b9e3007e390d38092ce339e8a1145781"", ""3690d362b9e3007e390d38092ce339e8a1145781"")","=HYPERLINK(""https://github.com/google/gson/commit/e839336eea7aa7e414108a6d33703349adc7a705"", ""e839336eea7aa7e414108a6d33703349adc7a705"")",inder123@gmail.com,incorporated feedback from r358,gson/src/test/java/com/google/gson/FunctionalWithInternalDependenciesTest.java,PrettyPrintingTest.java,testPrettyPrintArrayOfPrimitiveArrays
12/30/2008 16:42:36,"=HYPERLINK(""https://github.com/google/gson/commit/3690d362b9e3007e390d38092ce339e8a1145781"", ""3690d362b9e3007e390d38092ce339e8a1145781"")","=HYPERLINK(""https://github.com/google/gson/commit/e839336eea7aa7e414108a6d33703349adc7a705"", ""e839336eea7aa7e414108a6d33703349adc7a705"")",inder123@gmail.com,incorporated feedback from r358,gson/src/test/java/com/google/gson/FunctionalWithInternalDependenciesTest.java,PrettyPrintingTest.java,testPrettyPrintListOfPrimitiveArrays
12/30/2008 16:42:36,"=HYPERLINK(""https://github.com/google/gson/commit/3690d362b9e3007e390d38092ce339e8a1145781"", ""3690d362b9e3007e390d38092ce339e8a1145781"")","=HYPERLINK(""https://github.com/google/gson/commit/e839336eea7aa7e414108a6d33703349adc7a705"", ""e839336eea7aa7e414108a6d33703349adc7a705"")",inder123@gmail.com,incorporated feedback from r358,gson/src/test/java/com/google/gson/FunctionalWithInternalDependenciesTest.java,PrettyPrintingTest.java,testMultipleArrays
12/30/2008 16:42:36,"=HYPERLINK(""https://github.com/google/gson/commit/3690d362b9e3007e390d38092ce339e8a1145781"", ""3690d362b9e3007e390d38092ce339e8a1145781"")","=HYPERLINK(""https://github.com/google/gson/commit/e839336eea7aa7e414108a6d33703349adc7a705"", ""e839336eea7aa7e414108a6d33703349adc7a705"")",inder123@gmail.com,incorporated feedback from r358,gson/src/test/java/com/google/gson/FunctionalWithInternalDependenciesTest.java,PrettyPrintingTest.java,print
12/30/2008 16:42:36,"=HYPERLINK(""https://github.com/google/gson/commit/3690d362b9e3007e390d38092ce339e8a1145781"", ""3690d362b9e3007e390d38092ce339e8a1145781"")","=HYPERLINK(""https://github.com/google/gson/commit/e839336eea7aa7e414108a6d33703349adc7a705"", ""e839336eea7aa7e414108a6d33703349adc7a705"")",inder123@gmail.com,incorporated feedback from r358,gson/src/test/java/com/google/gson/FunctionalWithInternalDependenciesTest.java,PrettyPrintingTest.java,assertPrintMargin
03/03/2009 16:37:26,"=HYPERLINK(""https://github.com/google/gson/commit/18005bbae1922f725aabe1ce15624104bfc2d146"", ""18005bbae1922f725aabe1ce15624104bfc2d146"")","=HYPERLINK(""https://github.com/google/gson/commit/2c25fdd85022c52d5828a8e7f8a38e7e1d4a2de5"", ""2c25fdd85022c52d5828a8e7f8a38e7e1d4a2de5"")",inder123@gmail.com,using consistent method name prefixes.,gson/src/test/java/com/google/gson/metrics/PerformanceTest.java,PerformanceTest.java,testLargeCollectionSerialization
03/03/2009 16:37:26,"=HYPERLINK(""https://github.com/google/gson/commit/18005bbae1922f725aabe1ce15624104bfc2d146"", ""18005bbae1922f725aabe1ce15624104bfc2d146"")","=HYPERLINK(""https://github.com/google/gson/commit/2c25fdd85022c52d5828a8e7f8a38e7e1d4a2de5"", ""2c25fdd85022c52d5828a8e7f8a38e7e1d4a2de5"")",inder123@gmail.com,using consistent method name prefixes.,gson/src/test/java/com/google/gson/metrics/PerformanceTest.java,PerformanceTest.java,testLargeCollectionDeserialization
03/30/2009 13:36:55,"=HYPERLINK(""https://github.com/google/gson/commit/e340801d258e18f733620b0fd03d65fffb8df6c3"", ""e340801d258e18f733620b0fd03d65fffb8df6c3"")","=HYPERLINK(""https://github.com/google/gson/commit/4f727df749b9ad97dfd0dd108a67539b7f163ee2"", ""4f727df749b9ad97dfd0dd108a67539b7f163ee2"")",inder123@gmail.com,Moved enum-related tests under EnumTest class.,gson/src/test/java/com/google/gson/common/TestTypes.java,TestTypes.java,getExpectedJson
03/30/2009 13:36:55,"=HYPERLINK(""https://github.com/google/gson/commit/e340801d258e18f733620b0fd03d65fffb8df6c3"", ""e340801d258e18f733620b0fd03d65fffb8df6c3"")","=HYPERLINK(""https://github.com/google/gson/commit/4f727df749b9ad97dfd0dd108a67539b7f163ee2"", ""4f727df749b9ad97dfd0dd108a67539b7f163ee2"")",inder123@gmail.com,Moved enum-related tests under EnumTest class.,gson/src/test/java/com/google/gson/functional/ArrayTest.java,ArrayTest.java,testTopLevelEnumInASingleElementArrayDeserialization
03/30/2009 13:36:55,"=HYPERLINK(""https://github.com/google/gson/commit/e340801d258e18f733620b0fd03d65fffb8df6c3"", ""e340801d258e18f733620b0fd03d65fffb8df6c3"")","=HYPERLINK(""https://github.com/google/gson/commit/4f727df749b9ad97dfd0dd108a67539b7f163ee2"", ""4f727df749b9ad97dfd0dd108a67539b7f163ee2"")",inder123@gmail.com,Moved enum-related tests under EnumTest class.,gson/src/test/java/com/google/gson/functional/CollectionTest.java,CollectionTest.java,testCollectionOfEnumsSerialization
03/30/2009 13:36:55,"=HYPERLINK(""https://github.com/google/gson/commit/e340801d258e18f733620b0fd03d65fffb8df6c3"", ""e340801d258e18f733620b0fd03d65fffb8df6c3"")","=HYPERLINK(""https://github.com/google/gson/commit/4f727df749b9ad97dfd0dd108a67539b7f163ee2"", ""4f727df749b9ad97dfd0dd108a67539b7f163ee2"")",inder123@gmail.com,Moved enum-related tests under EnumTest class.,gson/src/test/java/com/google/gson/functional/CollectionTest.java,CollectionTest.java,testCollectionOfEnumsDeserialization
03/30/2009 13:36:55,"=HYPERLINK(""https://github.com/google/gson/commit/e340801d258e18f733620b0fd03d65fffb8df6c3"", ""e340801d258e18f733620b0fd03d65fffb8df6c3"")","=HYPERLINK(""https://github.com/google/gson/commit/4f727df749b9ad97dfd0dd108a67539b7f163ee2"", ""4f727df749b9ad97dfd0dd108a67539b7f163ee2"")",inder123@gmail.com,Moved enum-related tests under EnumTest class.,gson/src/test/java/com/google/gson/functional/EnumTest.java,EnumTest.java,testEnumSerialization
03/30/2009 13:36:55,"=HYPERLINK(""https://github.com/google/gson/commit/e340801d258e18f733620b0fd03d65fffb8df6c3"", ""e340801d258e18f733620b0fd03d65fffb8df6c3"")","=HYPERLINK(""https://github.com/google/gson/commit/4f727df749b9ad97dfd0dd108a67539b7f163ee2"", ""4f727df749b9ad97dfd0dd108a67539b7f163ee2"")",inder123@gmail.com,Moved enum-related tests under EnumTest class.,gson/src/test/java/com/google/gson/functional/EnumTest.java,EnumTest.java,testEnumDeserialization
03/30/2009 13:36:55,"=HYPERLINK(""https://github.com/google/gson/commit/e340801d258e18f733620b0fd03d65fffb8df6c3"", ""e340801d258e18f733620b0fd03d65fffb8df6c3"")","=HYPERLINK(""https://github.com/google/gson/commit/4f727df749b9ad97dfd0dd108a67539b7f163ee2"", ""4f727df749b9ad97dfd0dd108a67539b7f163ee2"")",inder123@gmail.com,Moved enum-related tests under EnumTest class.,gson/src/test/java/com/google/gson/functional/EnumTest.java,EnumTest.java,testEnumFieldSerialization
03/30/2009 13:36:55,"=HYPERLINK(""https://github.com/google/gson/commit/e340801d258e18f733620b0fd03d65fffb8df6c3"", ""e340801d258e18f733620b0fd03d65fffb8df6c3"")","=HYPERLINK(""https://github.com/google/gson/commit/4f727df749b9ad97dfd0dd108a67539b7f163ee2"", ""4f727df749b9ad97dfd0dd108a67539b7f163ee2"")",inder123@gmail.com,Moved enum-related tests under EnumTest class.,gson/src/test/java/com/google/gson/functional/EnumTest.java,EnumTest.java,testEnumFieldDeserialization
03/30/2009 13:36:55,"=HYPERLINK(""https://github.com/google/gson/commit/e340801d258e18f733620b0fd03d65fffb8df6c3"", ""e340801d258e18f733620b0fd03d65fffb8df6c3"")","=HYPERLINK(""https://github.com/google/gson/commit/4f727df749b9ad97dfd0dd108a67539b7f163ee2"", ""4f727df749b9ad97dfd0dd108a67539b7f163ee2"")",inder123@gmail.com,Moved enum-related tests under EnumTest class.,gson/src/test/java/com/google/gson/functional/EnumTest.java,EnumTest.java,Foo
03/30/2009 13:36:55,"=HYPERLINK(""https://github.com/google/gson/commit/e340801d258e18f733620b0fd03d65fffb8df6c3"", ""e340801d258e18f733620b0fd03d65fffb8df6c3"")","=HYPERLINK(""https://github.com/google/gson/commit/4f727df749b9ad97dfd0dd108a67539b7f163ee2"", ""4f727df749b9ad97dfd0dd108a67539b7f163ee2"")",inder123@gmail.com,Moved enum-related tests under EnumTest class.,gson/src/test/java/com/google/gson/functional/EnumTest.java,EnumTest.java,Foo
03/30/2009 13:36:55,"=HYPERLINK(""https://github.com/google/gson/commit/e340801d258e18f733620b0fd03d65fffb8df6c3"", ""e340801d258e18f733620b0fd03d65fffb8df6c3"")","=HYPERLINK(""https://github.com/google/gson/commit/4f727df749b9ad97dfd0dd108a67539b7f163ee2"", ""4f727df749b9ad97dfd0dd108a67539b7f163ee2"")",inder123@gmail.com,Moved enum-related tests under EnumTest class.,gson/src/test/java/com/google/gson/functional/ObjectTest.java,ObjectTest.java,testClassWithEnumFieldSerialization
03/30/2009 13:36:55,"=HYPERLINK(""https://github.com/google/gson/commit/e340801d258e18f733620b0fd03d65fffb8df6c3"", ""e340801d258e18f733620b0fd03d65fffb8df6c3"")","=HYPERLINK(""https://github.com/google/gson/commit/4f727df749b9ad97dfd0dd108a67539b7f163ee2"", ""4f727df749b9ad97dfd0dd108a67539b7f163ee2"")",inder123@gmail.com,Moved enum-related tests under EnumTest class.,gson/src/test/java/com/google/gson/functional/ObjectTest.java,ObjectTest.java,testClassWithEnumFieldDeserialization
03/30/2009 13:36:55,"=HYPERLINK(""https://github.com/google/gson/commit/e340801d258e18f733620b0fd03d65fffb8df6c3"", ""e340801d258e18f733620b0fd03d65fffb8df6c3"")","=HYPERLINK(""https://github.com/google/gson/commit/4f727df749b9ad97dfd0dd108a67539b7f163ee2"", ""4f727df749b9ad97dfd0dd108a67539b7f163ee2"")",inder123@gmail.com,Moved enum-related tests under EnumTest class.,gson/src/test/java/com/google/gson/functional/ObjectTest.java,ObjectTest.java,testTopLevelEnumSerialization
03/30/2009 13:36:55,"=HYPERLINK(""https://github.com/google/gson/commit/e340801d258e18f733620b0fd03d65fffb8df6c3"", ""e340801d258e18f733620b0fd03d65fffb8df6c3"")","=HYPERLINK(""https://github.com/google/gson/commit/4f727df749b9ad97dfd0dd108a67539b7f163ee2"", ""4f727df749b9ad97dfd0dd108a67539b7f163ee2"")",inder123@gmail.com,Moved enum-related tests under EnumTest class.,gson/src/test/java/com/google/gson/functional/ObjectTest.java,ObjectTest.java,testTopLevelEnumDeserialization
03/30/2009 13:36:55,"=HYPERLINK(""https://github.com/google/gson/commit/e340801d258e18f733620b0fd03d65fffb8df6c3"", ""e340801d258e18f733620b0fd03d65fffb8df6c3"")","=HYPERLINK(""https://github.com/google/gson/commit/4f727df749b9ad97dfd0dd108a67539b7f163ee2"", ""4f727df749b9ad97dfd0dd108a67539b7f163ee2"")",inder123@gmail.com,Moved enum-related tests under EnumTest class.,gson/src/test/java/com/google/gson/functional/ObjectTest.java,ObjectTest.java,getExpectedJson
05/19/2009 12:59:32,"=HYPERLINK(""https://github.com/google/gson/commit/cd9bd710927b7c2a2f01b75430a42e58b18fb456"", ""cd9bd710927b7c2a2f01b75430a42e58b18fb456"")","=HYPERLINK(""https://github.com/google/gson/commit/abf4ab2d78b2a7f3108fd7560145f45886f6b301"", ""abf4ab2d78b2a7f3108fd7560145f45886f6b301"")",joel.leitch@gmail.com,Allow JS Keywords as field name. These names are quoted anyways (and are valid according to the JSON spec) so it should not cause any issues.,gson/src/test/java/com/google/gson/JsonFieldNameValidatorTest.java,JsonFieldNameValidatorTest.java,testKeywordAsFieldName
05/19/2009 14:49:25,"=HYPERLINK(""https://github.com/google/gson/commit/376385ac0ecf0c17fe52d70627d9af93549e9bd7"", ""376385ac0ecf0c17fe52d70627d9af93549e9bd7"")","=HYPERLINK(""https://github.com/google/gson/commit/cd9bd710927b7c2a2f01b75430a42e58b18fb456"", ""cd9bd710927b7c2a2f01b75430a42e58b18fb456"")",joel.leitch@gmail.com,Add a single quote to the HTML set of characters that should be escaped.,gson/src/test/java/com/google/gson/EscaperTest.java,EscaperTest.java,testQuoteEscaping
07/13/2009 20:08:04,"=HYPERLINK(""https://github.com/google/gson/commit/d8095c72fd5149444be413ba1f1c6529a148bc89"", ""d8095c72fd5149444be413ba1f1c6529a148bc89"")","=HYPERLINK(""https://github.com/google/gson/commit/eac1beacc97818cbbda3ec4e6d0bf6c392e59509"", ""eac1beacc97818cbbda3ec4e6d0bf6c392e59509"")",inder123@gmail.com,minor improvements to the test,gson/src/test/java/com/google/gson/metrics/PerformanceTest.java,PerformanceTest.java,testStringDeserializationPerformance
08/31/2009 12:51:47,"=HYPERLINK(""https://github.com/google/gson/commit/82771f006cad2047df9b30cdc35338599c31da45"", ""82771f006cad2047df9b30cdc35338599c31da45"")","=HYPERLINK(""https://github.com/google/gson/commit/66649a1a628bf84c6b2dcaa9312cbdb911c0b042"", ""66649a1a628bf84c6b2dcaa9312cbdb911c0b042"")",inder123@gmail.com,removed Java 1.5 warnings,gson/src/test/java/com/google/gson/functional/ExposeFieldsTest.java,ExposeFieldsTest.java,getExpectedJsonWithoutAnnotations
09/22/2009 14:04:27,"=HYPERLINK(""https://github.com/google/gson/commit/18b301dfeb91ca4468e0955d4cafcb32186efe1e"", ""18b301dfeb91ca4468e0955d4cafcb32186efe1e"")","=HYPERLINK(""https://github.com/google/gson/commit/82771f006cad2047df9b30cdc35338599c31da45"", ""82771f006cad2047df9b30cdc35338599c31da45"")",joel.leitch@gmail.com,"- Serializing of Object arrays.
- Fixed incorrect warning",gson/src/test/java/com/google/gson/functional/ObjectTest.java,ObjectTest.java,testArrayOfPrimitivesAsObjectsSerialization
09/22/2009 14:04:27,"=HYPERLINK(""https://github.com/google/gson/commit/18b301dfeb91ca4468e0955d4cafcb32186efe1e"", ""18b301dfeb91ca4468e0955d4cafcb32186efe1e"")","=HYPERLINK(""https://github.com/google/gson/commit/82771f006cad2047df9b30cdc35338599c31da45"", ""82771f006cad2047df9b30cdc35338599c31da45"")",joel.leitch@gmail.com,"- Serializing of Object arrays.
- Fixed incorrect warning",gson/src/test/java/com/google/gson/functional/ObjectTest.java,ObjectTest.java,testArrayOfPrimitivesAsObjectsDeserialization
09/22/2009 14:04:27,"=HYPERLINK(""https://github.com/google/gson/commit/18b301dfeb91ca4468e0955d4cafcb32186efe1e"", ""18b301dfeb91ca4468e0955d4cafcb32186efe1e"")","=HYPERLINK(""https://github.com/google/gson/commit/82771f006cad2047df9b30cdc35338599c31da45"", ""82771f006cad2047df9b30cdc35338599c31da45"")",joel.leitch@gmail.com,"- Serializing of Object arrays.
- Fixed incorrect warning",gson/src/test/java/com/google/gson/functional/ObjectTest.java,ObjectTest.java,testArrayOfObjectsWithoutTypeInfoDeserialization
09/22/2009 14:04:27,"=HYPERLINK(""https://github.com/google/gson/commit/18b301dfeb91ca4468e0955d4cafcb32186efe1e"", ""18b301dfeb91ca4468e0955d4cafcb32186efe1e"")","=HYPERLINK(""https://github.com/google/gson/commit/82771f006cad2047df9b30cdc35338599c31da45"", ""82771f006cad2047df9b30cdc35338599c31da45"")",joel.leitch@gmail.com,"- Serializing of Object arrays.
- Fixed incorrect warning",gson/src/test/java/com/google/gson/functional/ObjectTest.java,ObjectTest.java,testArrayWithoutTypeInfoDeserialization
09/23/2009 13:28:03,"=HYPERLINK(""https://github.com/google/gson/commit/50eb582657b5a07aa4aec22f11c9f3071eb631a8"", ""50eb582657b5a07aa4aec22f11c9f3071eb631a8"")","=HYPERLINK(""https://github.com/google/gson/commit/3b0f8f4340c68d8fde0840befbc1b89afa14933f"", ""3b0f8f4340c68d8fde0840befbc1b89afa14933f"")",joel.leitch@gmail.com,Ensure that the JsonElement.toString() will always generate valid JSON (even when control characters/whitespace characters are used).,gson/src/test/java/com/google/gson/JsonEscapingVisitorTest.java,JsonEscapingVisitorTest.java,setUp
09/23/2009 13:28:03,"=HYPERLINK(""https://github.com/google/gson/commit/50eb582657b5a07aa4aec22f11c9f3071eb631a8"", ""50eb582657b5a07aa4aec22f11c9f3071eb631a8"")","=HYPERLINK(""https://github.com/google/gson/commit/3b0f8f4340c68d8fde0840befbc1b89afa14933f"", ""3b0f8f4340c68d8fde0840befbc1b89afa14933f"")",joel.leitch@gmail.com,Ensure that the JsonElement.toString() will always generate valid JSON (even when control characters/whitespace characters are used).,gson/src/test/java/com/google/gson/JsonEscapingVisitorTest.java,JsonEscapingVisitorTest.java,testNonStringPrimitiveVisitation
09/23/2009 13:28:03,"=HYPERLINK(""https://github.com/google/gson/commit/50eb582657b5a07aa4aec22f11c9f3071eb631a8"", ""50eb582657b5a07aa4aec22f11c9f3071eb631a8"")","=HYPERLINK(""https://github.com/google/gson/commit/3b0f8f4340c68d8fde0840befbc1b89afa14933f"", ""3b0f8f4340c68d8fde0840befbc1b89afa14933f"")",joel.leitch@gmail.com,Ensure that the JsonElement.toString() will always generate valid JSON (even when control characters/whitespace characters are used).,gson/src/test/java/com/google/gson/JsonEscapingVisitorTest.java,JsonEscapingVisitorTest.java,testStringPrimitiveVisitationNoEscapingRequired
09/23/2009 13:28:03,"=HYPERLINK(""https://github.com/google/gson/commit/50eb582657b5a07aa4aec22f11c9f3071eb631a8"", ""50eb582657b5a07aa4aec22f11c9f3071eb631a8"")","=HYPERLINK(""https://github.com/google/gson/commit/3b0f8f4340c68d8fde0840befbc1b89afa14933f"", ""3b0f8f4340c68d8fde0840befbc1b89afa14933f"")",joel.leitch@gmail.com,Ensure that the JsonElement.toString() will always generate valid JSON (even when control characters/whitespace characters are used).,gson/src/test/java/com/google/gson/JsonEscapingVisitorTest.java,JsonEscapingVisitorTest.java,testStringPrimitiveVisitationEscapingRequired
09/23/2009 13:28:03,"=HYPERLINK(""https://github.com/google/gson/commit/50eb582657b5a07aa4aec22f11c9f3071eb631a8"", ""50eb582657b5a07aa4aec22f11c9f3071eb631a8"")","=HYPERLINK(""https://github.com/google/gson/commit/3b0f8f4340c68d8fde0840befbc1b89afa14933f"", ""3b0f8f4340c68d8fde0840befbc1b89afa14933f"")",joel.leitch@gmail.com,Ensure that the JsonElement.toString() will always generate valid JSON (even when control characters/whitespace characters are used).,gson/src/test/java/com/google/gson/JsonEscapingVisitorTest.java,JsonEscapingVisitorTest.java,testNonStringArrayVisitation
09/23/2009 13:28:03,"=HYPERLINK(""https://github.com/google/gson/commit/50eb582657b5a07aa4aec22f11c9f3071eb631a8"", ""50eb582657b5a07aa4aec22f11c9f3071eb631a8"")","=HYPERLINK(""https://github.com/google/gson/commit/3b0f8f4340c68d8fde0840befbc1b89afa14933f"", ""3b0f8f4340c68d8fde0840befbc1b89afa14933f"")",joel.leitch@gmail.com,Ensure that the JsonElement.toString() will always generate valid JSON (even when control characters/whitespace characters are used).,gson/src/test/java/com/google/gson/JsonEscapingVisitorTest.java,JsonEscapingVisitorTest.java,testStringArrayVisitationNoEscaping
09/23/2009 13:28:03,"=HYPERLINK(""https://github.com/google/gson/commit/50eb582657b5a07aa4aec22f11c9f3071eb631a8"", ""50eb582657b5a07aa4aec22f11c9f3071eb631a8"")","=HYPERLINK(""https://github.com/google/gson/commit/3b0f8f4340c68d8fde0840befbc1b89afa14933f"", ""3b0f8f4340c68d8fde0840befbc1b89afa14933f"")",joel.leitch@gmail.com,Ensure that the JsonElement.toString() will always generate valid JSON (even when control characters/whitespace characters are used).,gson/src/test/java/com/google/gson/JsonEscapingVisitorTest.java,JsonEscapingVisitorTest.java,testStringArrayVisitationEscapingRequired
09/23/2009 13:28:03,"=HYPERLINK(""https://github.com/google/gson/commit/50eb582657b5a07aa4aec22f11c9f3071eb631a8"", ""50eb582657b5a07aa4aec22f11c9f3071eb631a8"")","=HYPERLINK(""https://github.com/google/gson/commit/3b0f8f4340c68d8fde0840befbc1b89afa14933f"", ""3b0f8f4340c68d8fde0840befbc1b89afa14933f"")",joel.leitch@gmail.com,Ensure that the JsonElement.toString() will always generate valid JSON (even when control characters/whitespace characters are used).,gson/src/test/java/com/google/gson/JsonEscapingVisitorTest.java,JsonEscapingVisitorTest.java,testNonStringFieldVisitation
09/23/2009 13:28:03,"=HYPERLINK(""https://github.com/google/gson/commit/50eb582657b5a07aa4aec22f11c9f3071eb631a8"", ""50eb582657b5a07aa4aec22f11c9f3071eb631a8"")","=HYPERLINK(""https://github.com/google/gson/commit/3b0f8f4340c68d8fde0840befbc1b89afa14933f"", ""3b0f8f4340c68d8fde0840befbc1b89afa14933f"")",joel.leitch@gmail.com,Ensure that the JsonElement.toString() will always generate valid JSON (even when control characters/whitespace characters are used).,gson/src/test/java/com/google/gson/JsonEscapingVisitorTest.java,JsonEscapingVisitorTest.java,testStringFieldVisitationNoEscaping
09/23/2009 13:28:03,"=HYPERLINK(""https://github.com/google/gson/commit/50eb582657b5a07aa4aec22f11c9f3071eb631a8"", ""50eb582657b5a07aa4aec22f11c9f3071eb631a8"")","=HYPERLINK(""https://github.com/google/gson/commit/3b0f8f4340c68d8fde0840befbc1b89afa14933f"", ""3b0f8f4340c68d8fde0840befbc1b89afa14933f"")",joel.leitch@gmail.com,Ensure that the JsonElement.toString() will always generate valid JSON (even when control characters/whitespace characters are used).,gson/src/test/java/com/google/gson/JsonEscapingVisitorTest.java,JsonEscapingVisitorTest.java,testStringFieldVisitationEscapingRequired
09/23/2009 13:28:03,"=HYPERLINK(""https://github.com/google/gson/commit/50eb582657b5a07aa4aec22f11c9f3071eb631a8"", ""50eb582657b5a07aa4aec22f11c9f3071eb631a8"")","=HYPERLINK(""https://github.com/google/gson/commit/3b0f8f4340c68d8fde0840befbc1b89afa14933f"", ""3b0f8f4340c68d8fde0840befbc1b89afa14933f"")",joel.leitch@gmail.com,Ensure that the JsonElement.toString() will always generate valid JSON (even when control characters/whitespace characters are used).,gson/src/test/java/com/google/gson/JsonEscapingVisitorTest.java,JsonEscapingVisitorTest.java,endArray
09/23/2009 13:28:03,"=HYPERLINK(""https://github.com/google/gson/commit/50eb582657b5a07aa4aec22f11c9f3071eb631a8"", ""50eb582657b5a07aa4aec22f11c9f3071eb631a8"")","=HYPERLINK(""https://github.com/google/gson/commit/3b0f8f4340c68d8fde0840befbc1b89afa14933f"", ""3b0f8f4340c68d8fde0840befbc1b89afa14933f"")",joel.leitch@gmail.com,Ensure that the JsonElement.toString() will always generate valid JSON (even when control characters/whitespace characters are used).,gson/src/test/java/com/google/gson/JsonEscapingVisitorTest.java,JsonEscapingVisitorTest.java,endObject
09/23/2009 13:28:03,"=HYPERLINK(""https://github.com/google/gson/commit/50eb582657b5a07aa4aec22f11c9f3071eb631a8"", ""50eb582657b5a07aa4aec22f11c9f3071eb631a8"")","=HYPERLINK(""https://github.com/google/gson/commit/3b0f8f4340c68d8fde0840befbc1b89afa14933f"", ""3b0f8f4340c68d8fde0840befbc1b89afa14933f"")",joel.leitch@gmail.com,Ensure that the JsonElement.toString() will always generate valid JSON (even when control characters/whitespace characters are used).,gson/src/test/java/com/google/gson/JsonEscapingVisitorTest.java,JsonEscapingVisitorTest.java,startArray
09/23/2009 13:28:03,"=HYPERLINK(""https://github.com/google/gson/commit/50eb582657b5a07aa4aec22f11c9f3071eb631a8"", ""50eb582657b5a07aa4aec22f11c9f3071eb631a8"")","=HYPERLINK(""https://github.com/google/gson/commit/3b0f8f4340c68d8fde0840befbc1b89afa14933f"", ""3b0f8f4340c68d8fde0840befbc1b89afa14933f"")",joel.leitch@gmail.com,Ensure that the JsonElement.toString() will always generate valid JSON (even when control characters/whitespace characters are used).,gson/src/test/java/com/google/gson/JsonEscapingVisitorTest.java,JsonEscapingVisitorTest.java,startObject
09/23/2009 13:28:03,"=HYPERLINK(""https://github.com/google/gson/commit/50eb582657b5a07aa4aec22f11c9f3071eb631a8"", ""50eb582657b5a07aa4aec22f11c9f3071eb631a8"")","=HYPERLINK(""https://github.com/google/gson/commit/3b0f8f4340c68d8fde0840befbc1b89afa14933f"", ""3b0f8f4340c68d8fde0840befbc1b89afa14933f"")",joel.leitch@gmail.com,Ensure that the JsonElement.toString() will always generate valid JSON (even when control characters/whitespace characters are used).,gson/src/test/java/com/google/gson/JsonEscapingVisitorTest.java,JsonEscapingVisitorTest.java,visitArrayMember
09/23/2009 13:28:03,"=HYPERLINK(""https://github.com/google/gson/commit/50eb582657b5a07aa4aec22f11c9f3071eb631a8"", ""50eb582657b5a07aa4aec22f11c9f3071eb631a8"")","=HYPERLINK(""https://github.com/google/gson/commit/3b0f8f4340c68d8fde0840befbc1b89afa14933f"", ""3b0f8f4340c68d8fde0840befbc1b89afa14933f"")",joel.leitch@gmail.com,Ensure that the JsonElement.toString() will always generate valid JSON (even when control characters/whitespace characters are used).,gson/src/test/java/com/google/gson/JsonEscapingVisitorTest.java,JsonEscapingVisitorTest.java,visitArrayMember
09/23/2009 13:28:03,"=HYPERLINK(""https://github.com/google/gson/commit/50eb582657b5a07aa4aec22f11c9f3071eb631a8"", ""50eb582657b5a07aa4aec22f11c9f3071eb631a8"")","=HYPERLINK(""https://github.com/google/gson/commit/3b0f8f4340c68d8fde0840befbc1b89afa14933f"", ""3b0f8f4340c68d8fde0840befbc1b89afa14933f"")",joel.leitch@gmail.com,Ensure that the JsonElement.toString() will always generate valid JSON (even when control characters/whitespace characters are used).,gson/src/test/java/com/google/gson/JsonEscapingVisitorTest.java,JsonEscapingVisitorTest.java,visitArrayMember
09/23/2009 13:28:03,"=HYPERLINK(""https://github.com/google/gson/commit/50eb582657b5a07aa4aec22f11c9f3071eb631a8"", ""50eb582657b5a07aa4aec22f11c9f3071eb631a8"")","=HYPERLINK(""https://github.com/google/gson/commit/3b0f8f4340c68d8fde0840befbc1b89afa14933f"", ""3b0f8f4340c68d8fde0840befbc1b89afa14933f"")",joel.leitch@gmail.com,Ensure that the JsonElement.toString() will always generate valid JSON (even when control characters/whitespace characters are used).,gson/src/test/java/com/google/gson/JsonEscapingVisitorTest.java,JsonEscapingVisitorTest.java,visitObjectMember
09/23/2009 13:28:03,"=HYPERLINK(""https://github.com/google/gson/commit/50eb582657b5a07aa4aec22f11c9f3071eb631a8"", ""50eb582657b5a07aa4aec22f11c9f3071eb631a8"")","=HYPERLINK(""https://github.com/google/gson/commit/3b0f8f4340c68d8fde0840befbc1b89afa14933f"", ""3b0f8f4340c68d8fde0840befbc1b89afa14933f"")",joel.leitch@gmail.com,Ensure that the JsonElement.toString() will always generate valid JSON (even when control characters/whitespace characters are used).,gson/src/test/java/com/google/gson/JsonEscapingVisitorTest.java,JsonEscapingVisitorTest.java,visitObjectMember
09/23/2009 13:28:03,"=HYPERLINK(""https://github.com/google/gson/commit/50eb582657b5a07aa4aec22f11c9f3071eb631a8"", ""50eb582657b5a07aa4aec22f11c9f3071eb631a8"")","=HYPERLINK(""https://github.com/google/gson/commit/3b0f8f4340c68d8fde0840befbc1b89afa14933f"", ""3b0f8f4340c68d8fde0840befbc1b89afa14933f"")",joel.leitch@gmail.com,Ensure that the JsonElement.toString() will always generate valid JSON (even when control characters/whitespace characters are used).,gson/src/test/java/com/google/gson/JsonEscapingVisitorTest.java,JsonEscapingVisitorTest.java,visitObjectMember
09/23/2009 13:28:03,"=HYPERLINK(""https://github.com/google/gson/commit/50eb582657b5a07aa4aec22f11c9f3071eb631a8"", ""50eb582657b5a07aa4aec22f11c9f3071eb631a8"")","=HYPERLINK(""https://github.com/google/gson/commit/3b0f8f4340c68d8fde0840befbc1b89afa14933f"", ""3b0f8f4340c68d8fde0840befbc1b89afa14933f"")",joel.leitch@gmail.com,Ensure that the JsonElement.toString() will always generate valid JSON (even when control characters/whitespace characters are used).,gson/src/test/java/com/google/gson/JsonEscapingVisitorTest.java,JsonEscapingVisitorTest.java,visitPrimitive
09/23/2009 13:28:03,"=HYPERLINK(""https://github.com/google/gson/commit/50eb582657b5a07aa4aec22f11c9f3071eb631a8"", ""50eb582657b5a07aa4aec22f11c9f3071eb631a8"")","=HYPERLINK(""https://github.com/google/gson/commit/3b0f8f4340c68d8fde0840befbc1b89afa14933f"", ""3b0f8f4340c68d8fde0840befbc1b89afa14933f"")",joel.leitch@gmail.com,Ensure that the JsonElement.toString() will always generate valid JSON (even when control characters/whitespace characters are used).,gson/src/test/java/com/google/gson/JsonEscapingVisitorTest.java,JsonEscapingVisitorTest.java,visitNullArrayMember
09/23/2009 13:28:03,"=HYPERLINK(""https://github.com/google/gson/commit/50eb582657b5a07aa4aec22f11c9f3071eb631a8"", ""50eb582657b5a07aa4aec22f11c9f3071eb631a8"")","=HYPERLINK(""https://github.com/google/gson/commit/3b0f8f4340c68d8fde0840befbc1b89afa14933f"", ""3b0f8f4340c68d8fde0840befbc1b89afa14933f"")",joel.leitch@gmail.com,Ensure that the JsonElement.toString() will always generate valid JSON (even when control characters/whitespace characters are used).,gson/src/test/java/com/google/gson/JsonEscapingVisitorTest.java,JsonEscapingVisitorTest.java,visitNull
09/23/2009 13:28:03,"=HYPERLINK(""https://github.com/google/gson/commit/50eb582657b5a07aa4aec22f11c9f3071eb631a8"", ""50eb582657b5a07aa4aec22f11c9f3071eb631a8"")","=HYPERLINK(""https://github.com/google/gson/commit/3b0f8f4340c68d8fde0840befbc1b89afa14933f"", ""3b0f8f4340c68d8fde0840befbc1b89afa14933f"")",joel.leitch@gmail.com,Ensure that the JsonElement.toString() will always generate valid JSON (even when control characters/whitespace characters are used).,gson/src/test/java/com/google/gson/JsonEscapingVisitorTest.java,JsonEscapingVisitorTest.java,visitNullObjectMember
09/25/2009 14:54:25,"=HYPERLINK(""https://github.com/google/gson/commit/3e7ebf85568e7c9ef5b1373907c89a215e27e2b9"", ""3e7ebf85568e7c9ef5b1373907c89a215e27e2b9"")","=HYPERLINK(""https://github.com/google/gson/commit/19ae6c0763cffe5d4a9a020902ae7d9ecbb2d6ea"", ""19ae6c0763cffe5d4a9a020902ae7d9ecbb2d6ea"")",inder123@gmail.com,"Fixed issue 156.
Added support for serializing an object field (or array elements) as per its actual type.
Refactored inheritance related tests into its own test class. Added regression tests for issue 156.",gson/src/test/java/com/google/gson/functional/ObjectTest.java,ObjectTest.java,testInheritenceSerialization
09/25/2009 14:54:25,"=HYPERLINK(""https://github.com/google/gson/commit/3e7ebf85568e7c9ef5b1373907c89a215e27e2b9"", ""3e7ebf85568e7c9ef5b1373907c89a215e27e2b9"")","=HYPERLINK(""https://github.com/google/gson/commit/19ae6c0763cffe5d4a9a020902ae7d9ecbb2d6ea"", ""19ae6c0763cffe5d4a9a020902ae7d9ecbb2d6ea"")",inder123@gmail.com,"Fixed issue 156.
Added support for serializing an object field (or array elements) as per its actual type.
Refactored inheritance related tests into its own test class. Added regression tests for issue 156.",gson/src/test/java/com/google/gson/functional/ObjectTest.java,ObjectTest.java,testInheritenceDeserialization
09/25/2009 14:54:25,"=HYPERLINK(""https://github.com/google/gson/commit/3e7ebf85568e7c9ef5b1373907c89a215e27e2b9"", ""3e7ebf85568e7c9ef5b1373907c89a215e27e2b9"")","=HYPERLINK(""https://github.com/google/gson/commit/19ae6c0763cffe5d4a9a020902ae7d9ecbb2d6ea"", ""19ae6c0763cffe5d4a9a020902ae7d9ecbb2d6ea"")",inder123@gmail.com,"Fixed issue 156.
Added support for serializing an object field (or array elements) as per its actual type.
Refactored inheritance related tests into its own test class. Added regression tests for issue 156.",gson/src/test/java/com/google/gson/functional/ObjectTest.java,ObjectTest.java,testSubInterfacesOfCollectionSerialization
09/25/2009 14:54:25,"=HYPERLINK(""https://github.com/google/gson/commit/3e7ebf85568e7c9ef5b1373907c89a215e27e2b9"", ""3e7ebf85568e7c9ef5b1373907c89a215e27e2b9"")","=HYPERLINK(""https://github.com/google/gson/commit/19ae6c0763cffe5d4a9a020902ae7d9ecbb2d6ea"", ""19ae6c0763cffe5d4a9a020902ae7d9ecbb2d6ea"")",inder123@gmail.com,"Fixed issue 156.
Added support for serializing an object field (or array elements) as per its actual type.
Refactored inheritance related tests into its own test class. Added regression tests for issue 156.",gson/src/test/java/com/google/gson/functional/ObjectTest.java,ObjectTest.java,testSubInterfacesOfCollectionDeserialization
09/25/2009 14:54:25,"=HYPERLINK(""https://github.com/google/gson/commit/3e7ebf85568e7c9ef5b1373907c89a215e27e2b9"", ""3e7ebf85568e7c9ef5b1373907c89a215e27e2b9"")","=HYPERLINK(""https://github.com/google/gson/commit/19ae6c0763cffe5d4a9a020902ae7d9ecbb2d6ea"", ""19ae6c0763cffe5d4a9a020902ae7d9ecbb2d6ea"")",inder123@gmail.com,"Fixed issue 156.
Added support for serializing an object field (or array elements) as per its actual type.
Refactored inheritance related tests into its own test class. Added regression tests for issue 156.",gson/src/test/java/com/google/gson/functional/ObjectTest.java,ObjectTest.java,ClassWithSubInterfacesOfCollection
09/25/2009 14:54:25,"=HYPERLINK(""https://github.com/google/gson/commit/3e7ebf85568e7c9ef5b1373907c89a215e27e2b9"", ""3e7ebf85568e7c9ef5b1373907c89a215e27e2b9"")","=HYPERLINK(""https://github.com/google/gson/commit/19ae6c0763cffe5d4a9a020902ae7d9ecbb2d6ea"", ""19ae6c0763cffe5d4a9a020902ae7d9ecbb2d6ea"")",inder123@gmail.com,"Fixed issue 156.
Added support for serializing an object field (or array elements) as per its actual type.
Refactored inheritance related tests into its own test class. Added regression tests for issue 156.",gson/src/test/java/com/google/gson/functional/ObjectTest.java,ObjectTest.java,ClassWithSubInterfacesOfCollection
09/25/2009 14:54:25,"=HYPERLINK(""https://github.com/google/gson/commit/3e7ebf85568e7c9ef5b1373907c89a215e27e2b9"", ""3e7ebf85568e7c9ef5b1373907c89a215e27e2b9"")","=HYPERLINK(""https://github.com/google/gson/commit/19ae6c0763cffe5d4a9a020902ae7d9ecbb2d6ea"", ""19ae6c0763cffe5d4a9a020902ae7d9ecbb2d6ea"")",inder123@gmail.com,"Fixed issue 156.
Added support for serializing an object field (or array elements) as per its actual type.
Refactored inheritance related tests into its own test class. Added regression tests for issue 156.",gson/src/test/java/com/google/gson/functional/ObjectTest.java,ObjectTest.java,listContains
09/25/2009 14:54:25,"=HYPERLINK(""https://github.com/google/gson/commit/3e7ebf85568e7c9ef5b1373907c89a215e27e2b9"", ""3e7ebf85568e7c9ef5b1373907c89a215e27e2b9"")","=HYPERLINK(""https://github.com/google/gson/commit/19ae6c0763cffe5d4a9a020902ae7d9ecbb2d6ea"", ""19ae6c0763cffe5d4a9a020902ae7d9ecbb2d6ea"")",inder123@gmail.com,"Fixed issue 156.
Added support for serializing an object field (or array elements) as per its actual type.
Refactored inheritance related tests into its own test class. Added regression tests for issue 156.",gson/src/test/java/com/google/gson/functional/ObjectTest.java,ObjectTest.java,queueContains
09/25/2009 14:54:25,"=HYPERLINK(""https://github.com/google/gson/commit/3e7ebf85568e7c9ef5b1373907c89a215e27e2b9"", ""3e7ebf85568e7c9ef5b1373907c89a215e27e2b9"")","=HYPERLINK(""https://github.com/google/gson/commit/19ae6c0763cffe5d4a9a020902ae7d9ecbb2d6ea"", ""19ae6c0763cffe5d4a9a020902ae7d9ecbb2d6ea"")",inder123@gmail.com,"Fixed issue 156.
Added support for serializing an object field (or array elements) as per its actual type.
Refactored inheritance related tests into its own test class. Added regression tests for issue 156.",gson/src/test/java/com/google/gson/functional/ObjectTest.java,ObjectTest.java,setContains
09/25/2009 14:54:25,"=HYPERLINK(""https://github.com/google/gson/commit/3e7ebf85568e7c9ef5b1373907c89a215e27e2b9"", ""3e7ebf85568e7c9ef5b1373907c89a215e27e2b9"")","=HYPERLINK(""https://github.com/google/gson/commit/19ae6c0763cffe5d4a9a020902ae7d9ecbb2d6ea"", ""19ae6c0763cffe5d4a9a020902ae7d9ecbb2d6ea"")",inder123@gmail.com,"Fixed issue 156.
Added support for serializing an object field (or array elements) as per its actual type.
Refactored inheritance related tests into its own test class. Added regression tests for issue 156.",gson/src/test/java/com/google/gson/functional/ObjectTest.java,ObjectTest.java,sortedSetContains
09/25/2009 14:54:25,"=HYPERLINK(""https://github.com/google/gson/commit/3e7ebf85568e7c9ef5b1373907c89a215e27e2b9"", ""3e7ebf85568e7c9ef5b1373907c89a215e27e2b9"")","=HYPERLINK(""https://github.com/google/gson/commit/19ae6c0763cffe5d4a9a020902ae7d9ecbb2d6ea"", ""19ae6c0763cffe5d4a9a020902ae7d9ecbb2d6ea"")",inder123@gmail.com,"Fixed issue 156.
Added support for serializing an object field (or array elements) as per its actual type.
Refactored inheritance related tests into its own test class. Added regression tests for issue 156.",gson/src/test/java/com/google/gson/functional/ObjectTest.java,ObjectTest.java,getExpectedJson
09/25/2009 14:54:25,"=HYPERLINK(""https://github.com/google/gson/commit/3e7ebf85568e7c9ef5b1373907c89a215e27e2b9"", ""3e7ebf85568e7c9ef5b1373907c89a215e27e2b9"")","=HYPERLINK(""https://github.com/google/gson/commit/19ae6c0763cffe5d4a9a020902ae7d9ecbb2d6ea"", ""19ae6c0763cffe5d4a9a020902ae7d9ecbb2d6ea"")",inder123@gmail.com,"Fixed issue 156.
Added support for serializing an object field (or array elements) as per its actual type.
Refactored inheritance related tests into its own test class. Added regression tests for issue 156.",gson/src/test/java/com/google/gson/functional/ObjectTest.java,ObjectTest.java,append
09/25/2009 14:54:25,"=HYPERLINK(""https://github.com/google/gson/commit/3e7ebf85568e7c9ef5b1373907c89a215e27e2b9"", ""3e7ebf85568e7c9ef5b1373907c89a215e27e2b9"")","=HYPERLINK(""https://github.com/google/gson/commit/19ae6c0763cffe5d4a9a020902ae7d9ecbb2d6ea"", ""19ae6c0763cffe5d4a9a020902ae7d9ecbb2d6ea"")",inder123@gmail.com,"Fixed issue 156.
Added support for serializing an object field (or array elements) as per its actual type.
Refactored inheritance related tests into its own test class. Added regression tests for issue 156.",gson/src/test/java/com/google/gson/functional/ObjectTest.java,ObjectTest.java,SubTypeOfNested
09/25/2009 14:54:25,"=HYPERLINK(""https://github.com/google/gson/commit/3e7ebf85568e7c9ef5b1373907c89a215e27e2b9"", ""3e7ebf85568e7c9ef5b1373907c89a215e27e2b9"")","=HYPERLINK(""https://github.com/google/gson/commit/19ae6c0763cffe5d4a9a020902ae7d9ecbb2d6ea"", ""19ae6c0763cffe5d4a9a020902ae7d9ecbb2d6ea"")",inder123@gmail.com,"Fixed issue 156.
Added support for serializing an object field (or array elements) as per its actual type.
Refactored inheritance related tests into its own test class. Added regression tests for issue 156.",gson/src/test/java/com/google/gson/functional/ObjectTest.java,ObjectTest.java,SubTypeOfNested
09/25/2009 14:54:25,"=HYPERLINK(""https://github.com/google/gson/commit/3e7ebf85568e7c9ef5b1373907c89a215e27e2b9"", ""3e7ebf85568e7c9ef5b1373907c89a215e27e2b9"")","=HYPERLINK(""https://github.com/google/gson/commit/19ae6c0763cffe5d4a9a020902ae7d9ecbb2d6ea"", ""19ae6c0763cffe5d4a9a020902ae7d9ecbb2d6ea"")",inder123@gmail.com,"Fixed issue 156.
Added support for serializing an object field (or array elements) as per its actual type.
Refactored inheritance related tests into its own test class. Added regression tests for issue 156.",gson/src/test/java/com/google/gson/functional/ObjectTest.java,ObjectTest.java,appendFields
09/29/2009 15:24:48,"=HYPERLINK(""https://github.com/google/gson/commit/e5ed1cc59a462f6072d5e049d5e8fe488bff0d89"", ""e5ed1cc59a462f6072d5e049d5e8fe488bff0d89"")","=HYPERLINK(""https://github.com/google/gson/commit/e73ad007a419d5a3061ea9a06d456597d5a7bd40"", ""e73ad007a419d5a3061ea9a06d456597d5a7bd40"")",joel.leitch@gmail.com,Added some more tests.,gson/src/test/java/com/google/gson/functional/ArrayTest.java,ArrayTest.java,testObjectArrayWithNonPrimitivesSerializaiton
09/29/2009 15:43:31,"=HYPERLINK(""https://github.com/google/gson/commit/907082102dad9f93d20ccf4a53ea626d5dc559eb"", ""907082102dad9f93d20ccf4a53ea626d5dc559eb"")","=HYPERLINK(""https://github.com/google/gson/commit/933a3e515021e9d3dea4a18326479a42df353494"", ""933a3e515021e9d3dea4a18326479a42df353494"")",inder123@gmail.com,"Added code to ensure that circular reference situations with custom handlers are detected.
Split CircularReferenceTest out of ObjectTest.",gson/src/test/java/com/google/gson/functional/ObjectTest.java,ObjectTest.java,testDirectedAcyclicGraphSerialization
09/29/2009 15:43:31,"=HYPERLINK(""https://github.com/google/gson/commit/907082102dad9f93d20ccf4a53ea626d5dc559eb"", ""907082102dad9f93d20ccf4a53ea626d5dc559eb"")","=HYPERLINK(""https://github.com/google/gson/commit/933a3e515021e9d3dea4a18326479a42df353494"", ""933a3e515021e9d3dea4a18326479a42df353494"")",inder123@gmail.com,"Added code to ensure that circular reference situations with custom handlers are detected.
Split CircularReferenceTest out of ObjectTest.",gson/src/test/java/com/google/gson/functional/ObjectTest.java,ObjectTest.java,testDirectedAcyclicGraphDeserialization
09/29/2009 15:43:31,"=HYPERLINK(""https://github.com/google/gson/commit/907082102dad9f93d20ccf4a53ea626d5dc559eb"", ""907082102dad9f93d20ccf4a53ea626d5dc559eb"")","=HYPERLINK(""https://github.com/google/gson/commit/933a3e515021e9d3dea4a18326479a42df353494"", ""933a3e515021e9d3dea4a18326479a42df353494"")",inder123@gmail.com,"Added code to ensure that circular reference situations with custom handlers are detected.
Split CircularReferenceTest out of ObjectTest.",gson/src/test/java/com/google/gson/functional/ObjectTest.java,ObjectTest.java,testCircularSerialization
09/29/2009 15:43:31,"=HYPERLINK(""https://github.com/google/gson/commit/907082102dad9f93d20ccf4a53ea626d5dc559eb"", ""907082102dad9f93d20ccf4a53ea626d5dc559eb"")","=HYPERLINK(""https://github.com/google/gson/commit/933a3e515021e9d3dea4a18326479a42df353494"", ""933a3e515021e9d3dea4a18326479a42df353494"")",inder123@gmail.com,"Added code to ensure that circular reference situations with custom handlers are detected.
Split CircularReferenceTest out of ObjectTest.",gson/src/test/java/com/google/gson/functional/ObjectTest.java,ObjectTest.java,testSelfReferenceSerialization
09/30/2009 20:37:57,"=HYPERLINK(""https://github.com/google/gson/commit/8567fe6c101f2472662b9362b880a55fc3dcca15"", ""8567fe6c101f2472662b9362b880a55fc3dcca15"")","=HYPERLINK(""https://github.com/google/gson/commit/77c2c29316dd1d8fc7ea608dd6f67585bb6b006c"", ""77c2c29316dd1d8fc7ea608dd6f67585bb6b006c"")",inder123@gmail.com,Implementing code review comment from r428: Using Polymorphism for exclusion strategies for expose annotations.,gson/src/test/java/com/google/gson/ExposeAnnotationBasedExclusionStrategyTest.java,ExposeAnnotationSerializationExclusionStrategyTest.java,setUp
09/30/2009 20:37:57,"=HYPERLINK(""https://github.com/google/gson/commit/8567fe6c101f2472662b9362b880a55fc3dcca15"", ""8567fe6c101f2472662b9362b880a55fc3dcca15"")","=HYPERLINK(""https://github.com/google/gson/commit/77c2c29316dd1d8fc7ea608dd6f67585bb6b006c"", ""77c2c29316dd1d8fc7ea608dd6f67585bb6b006c"")",inder123@gmail.com,Implementing code review comment from r428: Using Polymorphism for exclusion strategies for expose annotations.,gson/src/test/java/com/google/gson/ExposeAnnotationBasedExclusionStrategyTest.java,ExposeAnnotationSerializationExclusionStrategyTest.java,testNeverSkipClasses
09/30/2009 20:37:57,"=HYPERLINK(""https://github.com/google/gson/commit/8567fe6c101f2472662b9362b880a55fc3dcca15"", ""8567fe6c101f2472662b9362b880a55fc3dcca15"")","=HYPERLINK(""https://github.com/google/gson/commit/77c2c29316dd1d8fc7ea608dd6f67585bb6b006c"", ""77c2c29316dd1d8fc7ea608dd6f67585bb6b006c"")",inder123@gmail.com,Implementing code review comment from r428: Using Polymorphism for exclusion strategies for expose annotations.,gson/src/test/java/com/google/gson/ExposeAnnotationBasedExclusionStrategyTest.java,ExposeAnnotationSerializationExclusionStrategyTest.java,testSkipNonAnnotatedFields
09/30/2009 20:37:57,"=HYPERLINK(""https://github.com/google/gson/commit/8567fe6c101f2472662b9362b880a55fc3dcca15"", ""8567fe6c101f2472662b9362b880a55fc3dcca15"")","=HYPERLINK(""https://github.com/google/gson/commit/77c2c29316dd1d8fc7ea608dd6f67585bb6b006c"", ""77c2c29316dd1d8fc7ea608dd6f67585bb6b006c"")",inder123@gmail.com,Implementing code review comment from r428: Using Polymorphism for exclusion strategies for expose annotations.,gson/src/test/java/com/google/gson/ExposeAnnotationBasedExclusionStrategyTest.java,ExposeAnnotationSerializationExclusionStrategyTest.java,testNeverSkipExposedAnnotatedFields
10/01/2009 12:46:28,"=HYPERLINK(""https://github.com/google/gson/commit/3b1056c097cd615c531c1ffd5ccb772d65d2e814"", ""3b1056c097cd615c531c1ffd5ccb772d65d2e814"")","=HYPERLINK(""https://github.com/google/gson/commit/8567fe6c101f2472662b9362b880a55fc3dcca15"", ""8567fe6c101f2472662b9362b880a55fc3dcca15"")",inder123@gmail.com,"Renamed JsonParserAsync to JsonStreamParser as that is a more appropriate name.
Added a TODO in JsonSerializationVisitor per code review of r453.",gson/src/test/java/com/google/gson/JsonParserAsyncTest.java,JsonStreamParserTest.java,testParseTwoStrings
10/01/2009 12:46:28,"=HYPERLINK(""https://github.com/google/gson/commit/3b1056c097cd615c531c1ffd5ccb772d65d2e814"", ""3b1056c097cd615c531c1ffd5ccb772d65d2e814"")","=HYPERLINK(""https://github.com/google/gson/commit/8567fe6c101f2472662b9362b880a55fc3dcca15"", ""8567fe6c101f2472662b9362b880a55fc3dcca15"")",inder123@gmail.com,"Renamed JsonParserAsync to JsonStreamParser as that is a more appropriate name.
Added a TODO in JsonSerializationVisitor per code review of r453.",gson/src/test/java/com/google/gson/JsonParserAsyncTest.java,JsonStreamParserTest.java,testIterator
10/06/2009 12:10:52,"=HYPERLINK(""https://github.com/google/gson/commit/536a968b32eede34554121f75c72b2a658fc442e"", ""536a968b32eede34554121f75c72b2a658fc442e"")","=HYPERLINK(""https://github.com/google/gson/commit/d416361ac58046af0bbba29ed1a6158f640ebc9e"", ""d416361ac58046af0bbba29ed1a6158f640ebc9e"")",inder123@gmail.com,"Disabled escaping of single quote since it is valid for JSON (though invalid for JavaScript).
Added null checks in contexts since the custom type adapter can pass nulls.",gson/src/test/java/com/google/gson/EscaperTest.java,EscaperTest.java,testSingleQuoteEscaping
10/06/2009 22:48:29,"=HYPERLINK(""https://github.com/google/gson/commit/c892738fbb6f6e433921ca82234ea2c77b189f68"", ""c892738fbb6f6e433921ca82234ea2c77b189f68"")","=HYPERLINK(""https://github.com/google/gson/commit/536a968b32eede34554121f75c72b2a658fc442e"", ""536a968b32eede34554121f75c72b2a658fc442e"")",joel.leitch@gmail.com,Re-enabling the ' (apostrophe) escaping with valid JSON escaping.,gson/src/test/java/com/google/gson/EscaperTest.java,EscaperTest.java,testSingleQuoteEscaping
10/08/2009 14:28:53,"=HYPERLINK(""https://github.com/google/gson/commit/b634804533ab68697b6f5414e8c93c3613850bf2"", ""b634804533ab68697b6f5414e8c93c3613850bf2"")","=HYPERLINK(""https://github.com/google/gson/commit/839b0c2f94746b89c08212b9d199a174ae2c407b"", ""839b0c2f94746b89c08212b9d199a174ae2c407b"")",inder123@gmail.com,"Ensured that a base class custom serializer is run when the type is specified explicitly during serialization. For all other situations, ensured that the actual type of the object is taken into consideration while serializing. First a custom handler corresponding to the actual type is looked up, then a custom handler for the specified type.
Created some serialization specific tests regarding custom serializers. Revised some tests to use toJsonTree for better asserts instead of string matching.",gson/src/test/java/com/google/gson/common/TestTypes.java,TestTypes.java,BaseClass
10/08/2009 14:28:53,"=HYPERLINK(""https://github.com/google/gson/commit/b634804533ab68697b6f5414e8c93c3613850bf2"", ""b634804533ab68697b6f5414e8c93c3613850bf2"")","=HYPERLINK(""https://github.com/google/gson/commit/839b0c2f94746b89c08212b9d199a174ae2c407b"", ""839b0c2f94746b89c08212b9d199a174ae2c407b"")",inder123@gmail.com,"Ensured that a base class custom serializer is run when the type is specified explicitly during serialization. For all other situations, ensured that the actual type of the object is taken into consideration while serializing. First a custom handler corresponding to the actual type is looked up, then a custom handler for the specified type.
Created some serialization specific tests regarding custom serializers. Revised some tests to use toJsonTree for better asserts instead of string matching.",gson/src/test/java/com/google/gson/common/TestTypes.java,TestTypes.java,BaseClass
10/08/2009 14:28:53,"=HYPERLINK(""https://github.com/google/gson/commit/b634804533ab68697b6f5414e8c93c3613850bf2"", ""b634804533ab68697b6f5414e8c93c3613850bf2"")","=HYPERLINK(""https://github.com/google/gson/commit/839b0c2f94746b89c08212b9d199a174ae2c407b"", ""839b0c2f94746b89c08212b9d199a174ae2c407b"")",inder123@gmail.com,"Ensured that a base class custom serializer is run when the type is specified explicitly during serialization. For all other situations, ensured that the actual type of the object is taken into consideration while serializing. First a custom handler corresponding to the actual type is looked up, then a custom handler for the specified type.
Created some serialization specific tests regarding custom serializers. Revised some tests to use toJsonTree for better asserts instead of string matching.",gson/src/test/java/com/google/gson/common/TestTypes.java,TestTypes.java,getExpectedJson
10/08/2009 14:28:53,"=HYPERLINK(""https://github.com/google/gson/commit/b634804533ab68697b6f5414e8c93c3613850bf2"", ""b634804533ab68697b6f5414e8c93c3613850bf2"")","=HYPERLINK(""https://github.com/google/gson/commit/839b0c2f94746b89c08212b9d199a174ae2c407b"", ""839b0c2f94746b89c08212b9d199a174ae2c407b"")",inder123@gmail.com,"Ensured that a base class custom serializer is run when the type is specified explicitly during serialization. For all other situations, ensured that the actual type of the object is taken into consideration while serializing. First a custom handler corresponding to the actual type is looked up, then a custom handler for the specified type.
Created some serialization specific tests regarding custom serializers. Revised some tests to use toJsonTree for better asserts instead of string matching.",gson/src/test/java/com/google/gson/common/TestTypes.java,TestTypes.java,SubClass
10/08/2009 14:28:53,"=HYPERLINK(""https://github.com/google/gson/commit/b634804533ab68697b6f5414e8c93c3613850bf2"", ""b634804533ab68697b6f5414e8c93c3613850bf2"")","=HYPERLINK(""https://github.com/google/gson/commit/839b0c2f94746b89c08212b9d199a174ae2c407b"", ""839b0c2f94746b89c08212b9d199a174ae2c407b"")",inder123@gmail.com,"Ensured that a base class custom serializer is run when the type is specified explicitly during serialization. For all other situations, ensured that the actual type of the object is taken into consideration while serializing. First a custom handler corresponding to the actual type is looked up, then a custom handler for the specified type.
Created some serialization specific tests regarding custom serializers. Revised some tests to use toJsonTree for better asserts instead of string matching.",gson/src/test/java/com/google/gson/common/TestTypes.java,TestTypes.java,SubClass
10/08/2009 14:28:53,"=HYPERLINK(""https://github.com/google/gson/commit/b634804533ab68697b6f5414e8c93c3613850bf2"", ""b634804533ab68697b6f5414e8c93c3613850bf2"")","=HYPERLINK(""https://github.com/google/gson/commit/839b0c2f94746b89c08212b9d199a174ae2c407b"", ""839b0c2f94746b89c08212b9d199a174ae2c407b"")",inder123@gmail.com,"Ensured that a base class custom serializer is run when the type is specified explicitly during serialization. For all other situations, ensured that the actual type of the object is taken into consideration while serializing. First a custom handler corresponding to the actual type is looked up, then a custom handler for the specified type.
Created some serialization specific tests regarding custom serializers. Revised some tests to use toJsonTree for better asserts instead of string matching.",gson/src/test/java/com/google/gson/common/TestTypes.java,TestTypes.java,getExpectedJson
10/09/2009 16:12:07,"=HYPERLINK(""https://github.com/google/gson/commit/d87d3f807fba95106ef0baf6432c83640dcd1f3d"", ""d87d3f807fba95106ef0baf6432c83640dcd1f3d"")","=HYPERLINK(""https://github.com/google/gson/commit/bc1e5c5c991fe6d06a5a0f6b775684ac91d289d3"", ""bc1e5c5c991fe6d06a5a0f6b775684ac91d289d3"")",joel.leitch@gmail.com,"Added functional tests for user defined exclusion strategy.
Added test to ensure empty/null properties are added for the JsonObject.",gson/src/test/java/com/google/gson/JsonObjectTest.java,JsonObjectTest.java,testAddingNullProperties
12/04/2009 12:15:00,"=HYPERLINK(""https://github.com/google/gson/commit/15fa10943c6e9db6d5db147efdec9640e86838a9"", ""15fa10943c6e9db6d5db147efdec9640e86838a9"")","=HYPERLINK(""https://github.com/google/gson/commit/ebf24fbda51cd8391791fb89499a6d732a36d835"", ""ebf24fbda51cd8391791fb89499a6d732a36d835"")",inder123@gmail.com,"Fixed serializers and deserializers for java.sql Date and Time to ensure that Date does't serialize time, and time does't serialize the date portion.",gson/src/test/java/com/google/gson/functional/DefaultTypeAdaptersTest.java,DefaultTypeAdaptersTest.java,assertEquals
08/18/2010 19:10:42,"=HYPERLINK(""https://github.com/google/gson/commit/dc60cb193123b2564bac0c2de9a998e4649fea30"", ""dc60cb193123b2564bac0c2de9a998e4649fea30"")","=HYPERLINK(""https://github.com/google/gson/commit/89c18452aee5242646ae7d5562fb73b4795f6c58"", ""89c18452aee5242646ae7d5562fb73b4795f6c58"")",inder123@gmail.com,"Made FieldNamingStrategy2 is package protected class.
Made type hierarchy adapter registration package protected.
Marked some of the classes final.
Minor changes in the performance tests.",gson/src/test/java/com/google/gson/metrics/PerformanceTest.java,PerformanceTest.java,testByteArraySerialization
08/18/2010 19:10:42,"=HYPERLINK(""https://github.com/google/gson/commit/dc60cb193123b2564bac0c2de9a998e4649fea30"", ""dc60cb193123b2564bac0c2de9a998e4649fea30"")","=HYPERLINK(""https://github.com/google/gson/commit/89c18452aee5242646ae7d5562fb73b4795f6c58"", ""89c18452aee5242646ae7d5562fb73b4795f6c58"")",inder123@gmail.com,"Made FieldNamingStrategy2 is package protected class.
Made type hierarchy adapter registration package protected.
Marked some of the classes final.
Minor changes in the performance tests.",gson/src/test/java/com/google/gson/metrics/PerformanceTest.java,PerformanceTest.java,testSerializeClasses
08/18/2010 19:10:42,"=HYPERLINK(""https://github.com/google/gson/commit/dc60cb193123b2564bac0c2de9a998e4649fea30"", ""dc60cb193123b2564bac0c2de9a998e4649fea30"")","=HYPERLINK(""https://github.com/google/gson/commit/89c18452aee5242646ae7d5562fb73b4795f6c58"", ""89c18452aee5242646ae7d5562fb73b4795f6c58"")",inder123@gmail.com,"Made FieldNamingStrategy2 is package protected class.
Made type hierarchy adapter registration package protected.
Marked some of the classes final.
Minor changes in the performance tests.",gson/src/test/java/com/google/gson/metrics/PerformanceTest.java,PerformanceTest.java,testDeserializeClasses
08/18/2010 19:10:42,"=HYPERLINK(""https://github.com/google/gson/commit/dc60cb193123b2564bac0c2de9a998e4649fea30"", ""dc60cb193123b2564bac0c2de9a998e4649fea30"")","=HYPERLINK(""https://github.com/google/gson/commit/89c18452aee5242646ae7d5562fb73b4795f6c58"", ""89c18452aee5242646ae7d5562fb73b4795f6c58"")",inder123@gmail.com,"Made FieldNamingStrategy2 is package protected class.
Made type hierarchy adapter registration package protected.
Marked some of the classes final.
Minor changes in the performance tests.",gson/src/test/java/com/google/gson/metrics/PerformanceTest.java,PerformanceTest.java,testSerializeExposedClasses
08/18/2010 19:10:42,"=HYPERLINK(""https://github.com/google/gson/commit/dc60cb193123b2564bac0c2de9a998e4649fea30"", ""dc60cb193123b2564bac0c2de9a998e4649fea30"")","=HYPERLINK(""https://github.com/google/gson/commit/89c18452aee5242646ae7d5562fb73b4795f6c58"", ""89c18452aee5242646ae7d5562fb73b4795f6c58"")",inder123@gmail.com,"Made FieldNamingStrategy2 is package protected class.
Made type hierarchy adapter registration package protected.
Marked some of the classes final.
Minor changes in the performance tests.",gson/src/test/java/com/google/gson/metrics/PerformanceTest.java,PerformanceTest.java,testDeserializeExposedClasses
08/27/2010 00:59:18,"=HYPERLINK(""https://github.com/google/gson/commit/7a7bbf754cfabbcb56d090b982bf4b128e15938d"", ""7a7bbf754cfabbcb56d090b982bf4b128e15938d"")","=HYPERLINK(""https://github.com/google/gson/commit/765a9f1ecdfaf96f3587f488385111c9d6a4927e"", ""765a9f1ecdfaf96f3587f488385111c9d6a4927e"")",jesse@swank.ca,"Use JsonReader internally rather than JsonParserJavacc.
For raw parsing (ie. new JsonParser().parse()) the parse time has improved substantially. For example, JsonParserJavacc parsed my 48KiB buzz feed in 4.8ms. JsonReader parses the same feed in 0.9ms.
http://microbenchmarks.appspot.com/run/limpbizkit@gmail.com/com.google.gson.GsonBenchmark/430001",gson/src/test/java/com/google/gson/stream/JsonReaderTest.java,JsonReaderTest.java,testHighPrecisionLong
09/01/2010 19:15:23,"=HYPERLINK(""https://github.com/google/gson/commit/747e3c3051153779954e49b7dbc475daa678e1f4"", ""747e3c3051153779954e49b7dbc475daa678e1f4"")","=HYPERLINK(""https://github.com/google/gson/commit/ffdf0e70125420e4263f9d1f32a38a09b087f93c"", ""ffdf0e70125420e4263f9d1f32a38a09b087f93c"")",jesse@swank.ca,Support mixed streaming and databinding with new APIs.,gson/src/test/java/com/google/gson/functional/PrettyPrintingTest.java,PrettyPrintingTest.java,assertPrintMargin
10/27/2010 18:49:22,"=HYPERLINK(""https://github.com/google/gson/commit/2d7367364b866ad468f5b71316d92fd1490d9381"", ""2d7367364b866ad468f5b71316d92fd1490d9381"")","=HYPERLINK(""https://github.com/google/gson/commit/6feb325044240ba6ff15aceee2b3b091fa278d4f"", ""6feb325044240ba6ff15aceee2b3b091fa278d4f"")",inder123@gmail.com,"Added additional functional tests involving complex protocol buffers, and protos with repeated fields.
Moved all the functional tests under a functional package.",proto/src/test/java/com/google/gson/protobuf/FunctionalTest.java,ProtosWithPrimitiveTypesTest.java,setUp
10/27/2010 18:49:22,"=HYPERLINK(""https://github.com/google/gson/commit/2d7367364b866ad468f5b71316d92fd1490d9381"", ""2d7367364b866ad468f5b71316d92fd1490d9381"")","=HYPERLINK(""https://github.com/google/gson/commit/6feb325044240ba6ff15aceee2b3b091fa278d4f"", ""6feb325044240ba6ff15aceee2b3b091fa278d4f"")",inder123@gmail.com,"Added additional functional tests involving complex protocol buffers, and protos with repeated fields.
Moved all the functional tests under a functional package.",proto/src/test/java/com/google/gson/protobuf/FunctionalTest.java,ProtosWithPrimitiveTypesTest.java,testSerializeEmptyProto
10/27/2010 18:49:22,"=HYPERLINK(""https://github.com/google/gson/commit/2d7367364b866ad468f5b71316d92fd1490d9381"", ""2d7367364b866ad468f5b71316d92fd1490d9381"")","=HYPERLINK(""https://github.com/google/gson/commit/6feb325044240ba6ff15aceee2b3b091fa278d4f"", ""6feb325044240ba6ff15aceee2b3b091fa278d4f"")",inder123@gmail.com,"Added additional functional tests involving complex protocol buffers, and protos with repeated fields.
Moved all the functional tests under a functional package.",proto/src/test/java/com/google/gson/protobuf/FunctionalTest.java,ProtosWithPrimitiveTypesTest.java,testDeserializeEmptyProto
10/27/2010 18:49:22,"=HYPERLINK(""https://github.com/google/gson/commit/2d7367364b866ad468f5b71316d92fd1490d9381"", ""2d7367364b866ad468f5b71316d92fd1490d9381"")","=HYPERLINK(""https://github.com/google/gson/commit/6feb325044240ba6ff15aceee2b3b091fa278d4f"", ""6feb325044240ba6ff15aceee2b3b091fa278d4f"")",inder123@gmail.com,"Added additional functional tests involving complex protocol buffers, and protos with repeated fields.
Moved all the functional tests under a functional package.",proto/src/test/java/com/google/gson/protobuf/FunctionalTest.java,ProtosWithPrimitiveTypesTest.java,testSerializeProto
10/27/2010 18:49:22,"=HYPERLINK(""https://github.com/google/gson/commit/2d7367364b866ad468f5b71316d92fd1490d9381"", ""2d7367364b866ad468f5b71316d92fd1490d9381"")","=HYPERLINK(""https://github.com/google/gson/commit/6feb325044240ba6ff15aceee2b3b091fa278d4f"", ""6feb325044240ba6ff15aceee2b3b091fa278d4f"")",inder123@gmail.com,"Added additional functional tests involving complex protocol buffers, and protos with repeated fields.
Moved all the functional tests under a functional package.",proto/src/test/java/com/google/gson/protobuf/FunctionalTest.java,ProtosWithPrimitiveTypesTest.java,testDeserializeProto
11/01/2010 17:57:39,"=HYPERLINK(""https://github.com/google/gson/commit/43f2a0012b5fb9c94a5e1bb926034e136a3a8dfb"", ""43f2a0012b5fb9c94a5e1bb926034e136a3a8dfb"")","=HYPERLINK(""https://github.com/google/gson/commit/abe244c099b8c0f0e4c33921a55b27755564713a"", ""abe244c099b8c0f0e4c33921a55b27755564713a"")",inder123@gmail.com,Removed JavaCC parser definition and its generated classes.,gson/src/test/java/com/google/gson/StringUnmarshallerTest.java,StringUnmarshallerTest.java,testCtrlN
11/01/2010 17:57:39,"=HYPERLINK(""https://github.com/google/gson/commit/43f2a0012b5fb9c94a5e1bb926034e136a3a8dfb"", ""43f2a0012b5fb9c94a5e1bb926034e136a3a8dfb"")","=HYPERLINK(""https://github.com/google/gson/commit/abe244c099b8c0f0e4c33921a55b27755564713a"", ""abe244c099b8c0f0e4c33921a55b27755564713a"")",inder123@gmail.com,Removed JavaCC parser definition and its generated classes.,gson/src/test/java/com/google/gson/StringUnmarshallerTest.java,StringUnmarshallerTest.java,testCtrlR
11/01/2010 17:57:39,"=HYPERLINK(""https://github.com/google/gson/commit/43f2a0012b5fb9c94a5e1bb926034e136a3a8dfb"", ""43f2a0012b5fb9c94a5e1bb926034e136a3a8dfb"")","=HYPERLINK(""https://github.com/google/gson/commit/abe244c099b8c0f0e4c33921a55b27755564713a"", ""abe244c099b8c0f0e4c33921a55b27755564713a"")",inder123@gmail.com,Removed JavaCC parser definition and its generated classes.,gson/src/test/java/com/google/gson/StringUnmarshallerTest.java,StringUnmarshallerTest.java,testCtrlT
11/01/2010 17:57:39,"=HYPERLINK(""https://github.com/google/gson/commit/43f2a0012b5fb9c94a5e1bb926034e136a3a8dfb"", ""43f2a0012b5fb9c94a5e1bb926034e136a3a8dfb"")","=HYPERLINK(""https://github.com/google/gson/commit/abe244c099b8c0f0e4c33921a55b27755564713a"", ""abe244c099b8c0f0e4c33921a55b27755564713a"")",inder123@gmail.com,Removed JavaCC parser definition and its generated classes.,gson/src/test/java/com/google/gson/StringUnmarshallerTest.java,StringUnmarshallerTest.java,testBackSpace
11/01/2010 17:57:39,"=HYPERLINK(""https://github.com/google/gson/commit/43f2a0012b5fb9c94a5e1bb926034e136a3a8dfb"", ""43f2a0012b5fb9c94a5e1bb926034e136a3a8dfb"")","=HYPERLINK(""https://github.com/google/gson/commit/abe244c099b8c0f0e4c33921a55b27755564713a"", ""abe244c099b8c0f0e4c33921a55b27755564713a"")",inder123@gmail.com,Removed JavaCC parser definition and its generated classes.,gson/src/test/java/com/google/gson/StringUnmarshallerTest.java,StringUnmarshallerTest.java,testFormFeed
11/01/2010 17:57:39,"=HYPERLINK(""https://github.com/google/gson/commit/43f2a0012b5fb9c94a5e1bb926034e136a3a8dfb"", ""43f2a0012b5fb9c94a5e1bb926034e136a3a8dfb"")","=HYPERLINK(""https://github.com/google/gson/commit/abe244c099b8c0f0e4c33921a55b27755564713a"", ""abe244c099b8c0f0e4c33921a55b27755564713a"")",inder123@gmail.com,Removed JavaCC parser definition and its generated classes.,gson/src/test/java/com/google/gson/StringUnmarshallerTest.java,StringUnmarshallerTest.java,testSingleQuote
11/01/2010 17:57:39,"=HYPERLINK(""https://github.com/google/gson/commit/43f2a0012b5fb9c94a5e1bb926034e136a3a8dfb"", ""43f2a0012b5fb9c94a5e1bb926034e136a3a8dfb"")","=HYPERLINK(""https://github.com/google/gson/commit/abe244c099b8c0f0e4c33921a55b27755564713a"", ""abe244c099b8c0f0e4c33921a55b27755564713a"")",inder123@gmail.com,Removed JavaCC parser definition and its generated classes.,gson/src/test/java/com/google/gson/StringUnmarshallerTest.java,StringUnmarshallerTest.java,testSingleQuoteEscaped
11/01/2010 17:57:39,"=HYPERLINK(""https://github.com/google/gson/commit/43f2a0012b5fb9c94a5e1bb926034e136a3a8dfb"", ""43f2a0012b5fb9c94a5e1bb926034e136a3a8dfb"")","=HYPERLINK(""https://github.com/google/gson/commit/abe244c099b8c0f0e4c33921a55b27755564713a"", ""abe244c099b8c0f0e4c33921a55b27755564713a"")",inder123@gmail.com,Removed JavaCC parser definition and its generated classes.,gson/src/test/java/com/google/gson/StringUnmarshallerTest.java,StringUnmarshallerTest.java,testDoubleQuote
11/01/2010 17:57:39,"=HYPERLINK(""https://github.com/google/gson/commit/43f2a0012b5fb9c94a5e1bb926034e136a3a8dfb"", ""43f2a0012b5fb9c94a5e1bb926034e136a3a8dfb"")","=HYPERLINK(""https://github.com/google/gson/commit/abe244c099b8c0f0e4c33921a55b27755564713a"", ""abe244c099b8c0f0e4c33921a55b27755564713a"")",inder123@gmail.com,Removed JavaCC parser definition and its generated classes.,gson/src/test/java/com/google/gson/StringUnmarshallerTest.java,StringUnmarshallerTest.java,testDoubleQuoteEscaped
11/01/2010 17:57:39,"=HYPERLINK(""https://github.com/google/gson/commit/43f2a0012b5fb9c94a5e1bb926034e136a3a8dfb"", ""43f2a0012b5fb9c94a5e1bb926034e136a3a8dfb"")","=HYPERLINK(""https://github.com/google/gson/commit/abe244c099b8c0f0e4c33921a55b27755564713a"", ""abe244c099b8c0f0e4c33921a55b27755564713a"")",inder123@gmail.com,Removed JavaCC parser definition and its generated classes.,gson/src/test/java/com/google/gson/StringUnmarshallerTest.java,StringUnmarshallerTest.java,testBackslash
11/01/2010 17:57:39,"=HYPERLINK(""https://github.com/google/gson/commit/43f2a0012b5fb9c94a5e1bb926034e136a3a8dfb"", ""43f2a0012b5fb9c94a5e1bb926034e136a3a8dfb"")","=HYPERLINK(""https://github.com/google/gson/commit/abe244c099b8c0f0e4c33921a55b27755564713a"", ""abe244c099b8c0f0e4c33921a55b27755564713a"")",inder123@gmail.com,Removed JavaCC parser definition and its generated classes.,gson/src/test/java/com/google/gson/StringUnmarshallerTest.java,StringUnmarshallerTest.java,testUnicodeString
11/03/2010 11:16:17,"=HYPERLINK(""https://github.com/google/gson/commit/44edfcfb33205a71c4c37722e7311c184df6c6f2"", ""44edfcfb33205a71c4c37722e7311c184df6c6f2"")","=HYPERLINK(""https://github.com/google/gson/commit/83539c534c3cade5a05e633944420615b0b478ed"", ""83539c534c3cade5a05e633944420615b0b478ed"")",inder123@gmail.com,"Added version support in RestClient. Revised CallPath to extract version number specified in the path.
Moved version tests in CallPathProviderTest to CallPathTest.",wsf/src/test/java/com/google/gson/wsf/inject/CallPathProviderTest.java,CallPathTest.java,testVersionIsSkipped
11/03/2010 11:16:17,"=HYPERLINK(""https://github.com/google/gson/commit/44edfcfb33205a71c4c37722e7311c184df6c6f2"", ""44edfcfb33205a71c4c37722e7311c184df6c6f2"")","=HYPERLINK(""https://github.com/google/gson/commit/83539c534c3cade5a05e633944420615b0b478ed"", ""83539c534c3cade5a05e633944420615b0b478ed"")",inder123@gmail.com,"Added version support in RestClient. Revised CallPath to extract version number specified in the path.
Moved version tests in CallPathProviderTest to CallPathTest.",wsf/src/test/java/com/google/gson/wsf/inject/CallPathProviderTest.java,CallPathTest.java,testVersionNotPresent
11/05/2010 17:57:44,"=HYPERLINK(""https://github.com/google/gson/commit/6a951b427e2f0b37597da343401029312ff8288c"", ""6a951b427e2f0b37597da343401029312ff8288c"")","=HYPERLINK(""https://github.com/google/gson/commit/f6a332971f1f27be44fc40d2e8d9b8a34017f776"", ""f6a332971f1f27be44fc40d2e8d9b8a34017f776"")",joel.leitch@gmail.com,"Adding new tests (two of which are disabled, but prepping for 1.7).",gson/src/test/java/com/google/gson/functional/TypeVariableTest.java,TypeVariableTest.java,testSingle
11/12/2010 11:12:46,"=HYPERLINK(""https://github.com/google/gson/commit/822d1bc75e70538f01638955bf766316e416499c"", ""822d1bc75e70538f01638955bf766316e416499c"")","=HYPERLINK(""https://github.com/google/gson/commit/7d055fcb517a25e3cf141a867ec2b53264c40a19"", ""7d055fcb517a25e3cf141a867ec2b53264c40a19"")",inder123@gmail.com,moved contents of wsdef to greaze-definition.,wsdef/src/test/java/com/google/gson/rest/definition/IdTest.java,IdTest.java,testRawTypeNotEqualToParameterizedOfConcreteType
11/12/2010 11:12:46,"=HYPERLINK(""https://github.com/google/gson/commit/822d1bc75e70538f01638955bf766316e416499c"", ""822d1bc75e70538f01638955bf766316e416499c"")","=HYPERLINK(""https://github.com/google/gson/commit/7d055fcb517a25e3cf141a867ec2b53264c40a19"", ""7d055fcb517a25e3cf141a867ec2b53264c40a19"")",inder123@gmail.com,moved contents of wsdef to greaze-definition.,wsdef/src/test/java/com/google/gson/rest/definition/IdTest.java,IdTest.java,testRawTypeEqualToParameterizedOfWildcardType
11/12/2010 11:12:46,"=HYPERLINK(""https://github.com/google/gson/commit/822d1bc75e70538f01638955bf766316e416499c"", ""822d1bc75e70538f01638955bf766316e416499c"")","=HYPERLINK(""https://github.com/google/gson/commit/7d055fcb517a25e3cf141a867ec2b53264c40a19"", ""7d055fcb517a25e3cf141a867ec2b53264c40a19"")",inder123@gmail.com,moved contents of wsdef to greaze-definition.,wsdef/src/test/java/com/google/gson/rest/definition/IdTest.java,IdTest.java,testStaticEquals
11/12/2010 11:12:46,"=HYPERLINK(""https://github.com/google/gson/commit/822d1bc75e70538f01638955bf766316e416499c"", ""822d1bc75e70538f01638955bf766316e416499c"")","=HYPERLINK(""https://github.com/google/gson/commit/7d055fcb517a25e3cf141a867ec2b53264c40a19"", ""7d055fcb517a25e3cf141a867ec2b53264c40a19"")",inder123@gmail.com,moved contents of wsdef to greaze-definition.,wsdef/src/test/java/com/google/gson/rest/definition/IdTypeAdapterTest.java,IdTypeAdapterTest.java,setUp
11/12/2010 11:12:46,"=HYPERLINK(""https://github.com/google/gson/commit/822d1bc75e70538f01638955bf766316e416499c"", ""822d1bc75e70538f01638955bf766316e416499c"")","=HYPERLINK(""https://github.com/google/gson/commit/7d055fcb517a25e3cf141a867ec2b53264c40a19"", ""7d055fcb517a25e3cf141a867ec2b53264c40a19"")",inder123@gmail.com,moved contents of wsdef to greaze-definition.,wsdef/src/test/java/com/google/gson/rest/definition/IdTypeAdapterTest.java,IdTypeAdapterTest.java,testSerializeId
11/12/2010 11:12:46,"=HYPERLINK(""https://github.com/google/gson/commit/822d1bc75e70538f01638955bf766316e416499c"", ""822d1bc75e70538f01638955bf766316e416499c"")","=HYPERLINK(""https://github.com/google/gson/commit/7d055fcb517a25e3cf141a867ec2b53264c40a19"", ""7d055fcb517a25e3cf141a867ec2b53264c40a19"")",inder123@gmail.com,moved contents of wsdef to greaze-definition.,wsdef/src/test/java/com/google/gson/rest/definition/IdTypeAdapterTest.java,IdTypeAdapterTest.java,testDeserializeId
11/12/2010 11:12:46,"=HYPERLINK(""https://github.com/google/gson/commit/822d1bc75e70538f01638955bf766316e416499c"", ""822d1bc75e70538f01638955bf766316e416499c"")","=HYPERLINK(""https://github.com/google/gson/commit/7d055fcb517a25e3cf141a867ec2b53264c40a19"", ""7d055fcb517a25e3cf141a867ec2b53264c40a19"")",inder123@gmail.com,moved contents of wsdef to greaze-definition.,wsdef/src/test/java/com/google/gson/rest/definition/IdTypeAdapterTest.java,IdTypeAdapterTest.java,Student
11/12/2010 11:12:46,"=HYPERLINK(""https://github.com/google/gson/commit/822d1bc75e70538f01638955bf766316e416499c"", ""822d1bc75e70538f01638955bf766316e416499c"")","=HYPERLINK(""https://github.com/google/gson/commit/7d055fcb517a25e3cf141a867ec2b53264c40a19"", ""7d055fcb517a25e3cf141a867ec2b53264c40a19"")",inder123@gmail.com,moved contents of wsdef to greaze-definition.,wsdef/src/test/java/com/google/gson/rest/definition/IdTypeAdapterTest.java,IdTypeAdapterTest.java,Student
11/12/2010 11:12:46,"=HYPERLINK(""https://github.com/google/gson/commit/822d1bc75e70538f01638955bf766316e416499c"", ""822d1bc75e70538f01638955bf766316e416499c"")","=HYPERLINK(""https://github.com/google/gson/commit/7d055fcb517a25e3cf141a867ec2b53264c40a19"", ""7d055fcb517a25e3cf141a867ec2b53264c40a19"")",inder123@gmail.com,moved contents of wsdef to greaze-definition.,wsdef/src/test/java/com/google/gson/rest/definition/IdTypeAdapterTest.java,IdTypeAdapterTest.java,Course
11/12/2010 11:12:46,"=HYPERLINK(""https://github.com/google/gson/commit/822d1bc75e70538f01638955bf766316e416499c"", ""822d1bc75e70538f01638955bf766316e416499c"")","=HYPERLINK(""https://github.com/google/gson/commit/7d055fcb517a25e3cf141a867ec2b53264c40a19"", ""7d055fcb517a25e3cf141a867ec2b53264c40a19"")",inder123@gmail.com,moved contents of wsdef to greaze-definition.,wsdef/src/test/java/com/google/gson/rest/definition/IdTypeAdapterTest.java,IdTypeAdapterTest.java,Course
11/12/2010 11:12:46,"=HYPERLINK(""https://github.com/google/gson/commit/822d1bc75e70538f01638955bf766316e416499c"", ""822d1bc75e70538f01638955bf766316e416499c"")","=HYPERLINK(""https://github.com/google/gson/commit/7d055fcb517a25e3cf141a867ec2b53264c40a19"", ""7d055fcb517a25e3cf141a867ec2b53264c40a19"")",inder123@gmail.com,moved contents of wsdef to greaze-definition.,wsdef/src/test/java/com/google/gson/rest/definition/IdTypeAdapterTest.java,IdTypeAdapterTest.java,getId
11/12/2010 11:12:46,"=HYPERLINK(""https://github.com/google/gson/commit/822d1bc75e70538f01638955bf766316e416499c"", ""822d1bc75e70538f01638955bf766316e416499c"")","=HYPERLINK(""https://github.com/google/gson/commit/7d055fcb517a25e3cf141a867ec2b53264c40a19"", ""7d055fcb517a25e3cf141a867ec2b53264c40a19"")",inder123@gmail.com,moved contents of wsdef to greaze-definition.,wsdef/src/test/java/com/google/gson/rest/definition/IdTypeAdapterTest.java,IdTypeAdapterTest.java,getStudents
11/12/2010 11:12:46,"=HYPERLINK(""https://github.com/google/gson/commit/822d1bc75e70538f01638955bf766316e416499c"", ""822d1bc75e70538f01638955bf766316e416499c"")","=HYPERLINK(""https://github.com/google/gson/commit/7d055fcb517a25e3cf141a867ec2b53264c40a19"", ""7d055fcb517a25e3cf141a867ec2b53264c40a19"")",inder123@gmail.com,moved contents of wsdef to greaze-definition.,wsdef/src/test/java/com/google/gson/rest/definition/IdTypeAdapterTest.java,IdTypeAdapterTest.java,Assignment
11/12/2010 11:12:46,"=HYPERLINK(""https://github.com/google/gson/commit/822d1bc75e70538f01638955bf766316e416499c"", ""822d1bc75e70538f01638955bf766316e416499c"")","=HYPERLINK(""https://github.com/google/gson/commit/7d055fcb517a25e3cf141a867ec2b53264c40a19"", ""7d055fcb517a25e3cf141a867ec2b53264c40a19"")",inder123@gmail.com,moved contents of wsdef to greaze-definition.,wsdef/src/test/java/com/google/gson/rest/definition/IdTypeAdapterTest.java,IdTypeAdapterTest.java,Assignment
11/12/2010 11:12:46,"=HYPERLINK(""https://github.com/google/gson/commit/822d1bc75e70538f01638955bf766316e416499c"", ""822d1bc75e70538f01638955bf766316e416499c"")","=HYPERLINK(""https://github.com/google/gson/commit/7d055fcb517a25e3cf141a867ec2b53264c40a19"", ""7d055fcb517a25e3cf141a867ec2b53264c40a19"")",inder123@gmail.com,moved contents of wsdef to greaze-definition.,wsdef/src/test/java/com/google/gson/rest/definition/IdTypeAdapterTest.java,IdTypeAdapterTest.java,createList
11/12/2010 11:12:46,"=HYPERLINK(""https://github.com/google/gson/commit/822d1bc75e70538f01638955bf766316e416499c"", ""822d1bc75e70538f01638955bf766316e416499c"")","=HYPERLINK(""https://github.com/google/gson/commit/7d055fcb517a25e3cf141a867ec2b53264c40a19"", ""7d055fcb517a25e3cf141a867ec2b53264c40a19"")",inder123@gmail.com,moved contents of wsdef to greaze-definition.,wsdef/src/test/java/com/google/gson/webservice/definition/CallPathTest.java,CallPathTest.java,testVersionIsSkipped
11/12/2010 11:12:46,"=HYPERLINK(""https://github.com/google/gson/commit/822d1bc75e70538f01638955bf766316e416499c"", ""822d1bc75e70538f01638955bf766316e416499c"")","=HYPERLINK(""https://github.com/google/gson/commit/7d055fcb517a25e3cf141a867ec2b53264c40a19"", ""7d055fcb517a25e3cf141a867ec2b53264c40a19"")",inder123@gmail.com,moved contents of wsdef to greaze-definition.,wsdef/src/test/java/com/google/gson/webservice/definition/CallPathTest.java,CallPathTest.java,testVersionNotPresent
11/12/2010 11:12:46,"=HYPERLINK(""https://github.com/google/gson/commit/822d1bc75e70538f01638955bf766316e416499c"", ""822d1bc75e70538f01638955bf766316e416499c"")","=HYPERLINK(""https://github.com/google/gson/commit/7d055fcb517a25e3cf141a867ec2b53264c40a19"", ""7d055fcb517a25e3cf141a867ec2b53264c40a19"")",inder123@gmail.com,moved contents of wsdef to greaze-definition.,wsdef/src/test/java/com/google/gson/webservice/definition/CallPathTest.java,CallPathTest.java,testResourceIdPresent
11/12/2010 11:12:46,"=HYPERLINK(""https://github.com/google/gson/commit/822d1bc75e70538f01638955bf766316e416499c"", ""822d1bc75e70538f01638955bf766316e416499c"")","=HYPERLINK(""https://github.com/google/gson/commit/7d055fcb517a25e3cf141a867ec2b53264c40a19"", ""7d055fcb517a25e3cf141a867ec2b53264c40a19"")",inder123@gmail.com,moved contents of wsdef to greaze-definition.,wsdef/src/test/java/com/google/gson/webservice/definition/CallPathTest.java,CallPathTest.java,testResourceIdWithEndSlashPresent
11/12/2010 11:12:46,"=HYPERLINK(""https://github.com/google/gson/commit/822d1bc75e70538f01638955bf766316e416499c"", ""822d1bc75e70538f01638955bf766316e416499c"")","=HYPERLINK(""https://github.com/google/gson/commit/7d055fcb517a25e3cf141a867ec2b53264c40a19"", ""7d055fcb517a25e3cf141a867ec2b53264c40a19"")",inder123@gmail.com,moved contents of wsdef to greaze-definition.,wsdef/src/test/java/com/google/gson/webservice/definition/CallPathTest.java,CallPathTest.java,testVersionAndResourceIdPresent
11/12/2010 11:12:46,"=HYPERLINK(""https://github.com/google/gson/commit/822d1bc75e70538f01638955bf766316e416499c"", ""822d1bc75e70538f01638955bf766316e416499c"")","=HYPERLINK(""https://github.com/google/gson/commit/7d055fcb517a25e3cf141a867ec2b53264c40a19"", ""7d055fcb517a25e3cf141a867ec2b53264c40a19"")",inder123@gmail.com,moved contents of wsdef to greaze-definition.,wsdef/src/test/java/com/google/gson/webservice/definition/CallPathTest.java,CallPathTest.java,testNullPath
11/12/2010 11:12:46,"=HYPERLINK(""https://github.com/google/gson/commit/822d1bc75e70538f01638955bf766316e416499c"", ""822d1bc75e70538f01638955bf766316e416499c"")","=HYPERLINK(""https://github.com/google/gson/commit/7d055fcb517a25e3cf141a867ec2b53264c40a19"", ""7d055fcb517a25e3cf141a867ec2b53264c40a19"")",inder123@gmail.com,moved contents of wsdef to greaze-definition.,wsdef/src/test/java/com/google/gson/webservice/definition/CallPathTest.java,CallPathTest.java,testEmptyPath
11/12/2010 11:12:46,"=HYPERLINK(""https://github.com/google/gson/commit/822d1bc75e70538f01638955bf766316e416499c"", ""822d1bc75e70538f01638955bf766316e416499c"")","=HYPERLINK(""https://github.com/google/gson/commit/7d055fcb517a25e3cf141a867ec2b53264c40a19"", ""7d055fcb517a25e3cf141a867ec2b53264c40a19"")",inder123@gmail.com,moved contents of wsdef to greaze-definition.,wsdef/src/test/java/com/google/gson/webservice/definition/CallPathTest.java,CallPathTest.java,testWhiteSpacePath
11/12/2010 11:12:46,"=HYPERLINK(""https://github.com/google/gson/commit/822d1bc75e70538f01638955bf766316e416499c"", ""822d1bc75e70538f01638955bf766316e416499c"")","=HYPERLINK(""https://github.com/google/gson/commit/7d055fcb517a25e3cf141a867ec2b53264c40a19"", ""7d055fcb517a25e3cf141a867ec2b53264c40a19"")",inder123@gmail.com,moved contents of wsdef to greaze-definition.,wsdef/src/test/java/com/google/gson/webservice/definition/TypedKeyTest.java,TypedKeyTest.java,testEqualsForSameName
11/12/2010 11:12:46,"=HYPERLINK(""https://github.com/google/gson/commit/822d1bc75e70538f01638955bf766316e416499c"", ""822d1bc75e70538f01638955bf766316e416499c"")","=HYPERLINK(""https://github.com/google/gson/commit/7d055fcb517a25e3cf141a867ec2b53264c40a19"", ""7d055fcb517a25e3cf141a867ec2b53264c40a19"")",inder123@gmail.com,moved contents of wsdef to greaze-definition.,wsdef/src/test/java/com/google/gson/webservice/definition/TypedKeyTest.java,TypedKeyTest.java,testEqualsFailsForDifferentClasses
11/16/2010 16:14:40,"=HYPERLINK(""https://github.com/google/gson/commit/0a3f5fa801954b07d0041d8a7dc6f87dc210a470"", ""0a3f5fa801954b07d0041d8a7dc6f87dc210a470"")","=HYPERLINK(""https://github.com/google/gson/commit/279649986eb524666e8c75f0d0b4ad737a9be906"", ""279649986eb524666e8c75f0d0b4ad737a9be906"")",joel.leitch@gmail.com,"Required strings to be quoted even in lenient mode.
As far as Inderjeet and I can tell, this is consistent with Gson 1.5.",gson/src/test/java/com/google/gson/JsonParserTest.java,JsonParserTest.java,testParseUnquotedStringSentence
11/16/2010 16:14:40,"=HYPERLINK(""https://github.com/google/gson/commit/0a3f5fa801954b07d0041d8a7dc6f87dc210a470"", ""0a3f5fa801954b07d0041d8a7dc6f87dc210a470"")","=HYPERLINK(""https://github.com/google/gson/commit/279649986eb524666e8c75f0d0b4ad737a9be906"", ""279649986eb524666e8c75f0d0b4ad737a9be906"")",joel.leitch@gmail.com,"Required strings to be quoted even in lenient mode.
As far as Inderjeet and I can tell, this is consistent with Gson 1.5.",gson/src/test/java/com/google/gson/functional/PrimitiveTest.java,PrimitiveTest.java,testUnquotedStringDeserialization
11/16/2010 16:18:28,"=HYPERLINK(""https://github.com/google/gson/commit/56344cf06786bf8cd031933a5fc39eeacde7d942"", ""56344cf06786bf8cd031933a5fc39eeacde7d942"")","=HYPERLINK(""https://github.com/google/gson/commit/0a3f5fa801954b07d0041d8a7dc6f87dc210a470"", ""0a3f5fa801954b07d0041d8a7dc6f87dc210a470"")",joel.leitch@gmail.com,Remove duplicate test.,gson/src/test/java/com/google/gson/JsonParserTest.java,JsonParserTest.java,testParseSingleWordFails
12/03/2010 02:07:13,"=HYPERLINK(""https://github.com/google/gson/commit/d1ddab2e6ffcd938ac0d133fd46caf5fb2417009"", ""d1ddab2e6ffcd938ac0d133fd46caf5fb2417009"")","=HYPERLINK(""https://github.com/google/gson/commit/faa5464e848ab9c6afc46e38eb416e7a156a23e1"", ""faa5464e848ab9c6afc46e38eb416e7a156a23e1"")",jesse@swank.ca,"Swap out GSON's type mechanics with the Type resolution code from Guice.
The most significant impact of this change is that fields whose types are type parameters should now GSONify just fine. For example, consider the class below.
abstract class Foo<A, B> {
A a;
B b;
List<A> list;
Map<A, List<B>> map;
}
class RealFoo extends Foo<String, Integer> {...}
This is a reasonable checkpoint but some work still needs to be done for this. In particular, the level of visibility of methods in TypeToken and Type should be reconsidered; we're exposing more than we need to!",gson/src/test/java/com/google/gson/TypeInfoArrayTest.java,TypeInfoArrayTest.java,testArray
12/03/2010 02:07:13,"=HYPERLINK(""https://github.com/google/gson/commit/d1ddab2e6ffcd938ac0d133fd46caf5fb2417009"", ""d1ddab2e6ffcd938ac0d133fd46caf5fb2417009"")","=HYPERLINK(""https://github.com/google/gson/commit/faa5464e848ab9c6afc46e38eb416e7a156a23e1"", ""faa5464e848ab9c6afc46e38eb416e7a156a23e1"")",jesse@swank.ca,"Swap out GSON's type mechanics with the Type resolution code from Guice.
The most significant impact of this change is that fields whose types are type parameters should now GSONify just fine. For example, consider the class below.
abstract class Foo<A, B> {
A a;
B b;
List<A> list;
Map<A, List<B>> map;
}
class RealFoo extends Foo<String, Integer> {...}
This is a reasonable checkpoint but some work still needs to be done for this. In particular, the level of visibility of methods in TypeToken and Type should be reconsidered; we're exposing more than we need to!",gson/src/test/java/com/google/gson/TypeInfoArrayTest.java,TypeInfoArrayTest.java,testArrayOfArrays
12/03/2010 02:07:13,"=HYPERLINK(""https://github.com/google/gson/commit/d1ddab2e6ffcd938ac0d133fd46caf5fb2417009"", ""d1ddab2e6ffcd938ac0d133fd46caf5fb2417009"")","=HYPERLINK(""https://github.com/google/gson/commit/faa5464e848ab9c6afc46e38eb416e7a156a23e1"", ""faa5464e848ab9c6afc46e38eb416e7a156a23e1"")",jesse@swank.ca,"Swap out GSON's type mechanics with the Type resolution code from Guice.
The most significant impact of this change is that fields whose types are type parameters should now GSONify just fine. For example, consider the class below.
abstract class Foo<A, B> {
A a;
B b;
List<A> list;
Map<A, List<B>> map;
}
class RealFoo extends Foo<String, Integer> {...}
This is a reasonable checkpoint but some work still needs to be done for this. In particular, the level of visibility of methods in TypeToken and Type should be reconsidered; we're exposing more than we need to!",gson/src/test/java/com/google/gson/TypeInfoArrayTest.java,TypeInfoArrayTest.java,testParameterizedArray
12/03/2010 02:07:13,"=HYPERLINK(""https://github.com/google/gson/commit/d1ddab2e6ffcd938ac0d133fd46caf5fb2417009"", ""d1ddab2e6ffcd938ac0d133fd46caf5fb2417009"")","=HYPERLINK(""https://github.com/google/gson/commit/faa5464e848ab9c6afc46e38eb416e7a156a23e1"", ""faa5464e848ab9c6afc46e38eb416e7a156a23e1"")",jesse@swank.ca,"Swap out GSON's type mechanics with the Type resolution code from Guice.
The most significant impact of this change is that fields whose types are type parameters should now GSONify just fine. For example, consider the class below.
abstract class Foo<A, B> {
A a;
B b;
List<A> list;
Map<A, List<B>> map;
}
class RealFoo extends Foo<String, Integer> {...}
This is a reasonable checkpoint but some work still needs to be done for this. In particular, the level of visibility of methods in TypeToken and Type should be reconsidered; we're exposing more than we need to!",gson/src/test/java/com/google/gson/TypeInfoArrayTest.java,TypeInfoArrayTest.java,testParameterizedArrayOfArrays
12/03/2010 02:07:13,"=HYPERLINK(""https://github.com/google/gson/commit/d1ddab2e6ffcd938ac0d133fd46caf5fb2417009"", ""d1ddab2e6ffcd938ac0d133fd46caf5fb2417009"")","=HYPERLINK(""https://github.com/google/gson/commit/faa5464e848ab9c6afc46e38eb416e7a156a23e1"", ""faa5464e848ab9c6afc46e38eb416e7a156a23e1"")",jesse@swank.ca,"Swap out GSON's type mechanics with the Type resolution code from Guice.
The most significant impact of this change is that fields whose types are type parameters should now GSONify just fine. For example, consider the class below.
abstract class Foo<A, B> {
A a;
B b;
List<A> list;
Map<A, List<B>> map;
}
class RealFoo extends Foo<String, Integer> {...}
This is a reasonable checkpoint but some work still needs to be done for this. In particular, the level of visibility of methods in TypeToken and Type should be reconsidered; we're exposing more than we need to!",gson/src/test/java/com/google/gson/TypeInfoArrayTest.java,TypeInfoArrayTest.java,testNestedParameterizedArray
12/03/2010 02:07:13,"=HYPERLINK(""https://github.com/google/gson/commit/d1ddab2e6ffcd938ac0d133fd46caf5fb2417009"", ""d1ddab2e6ffcd938ac0d133fd46caf5fb2417009"")","=HYPERLINK(""https://github.com/google/gson/commit/faa5464e848ab9c6afc46e38eb416e7a156a23e1"", ""faa5464e848ab9c6afc46e38eb416e7a156a23e1"")",jesse@swank.ca,"Swap out GSON's type mechanics with the Type resolution code from Guice.
The most significant impact of this change is that fields whose types are type parameters should now GSONify just fine. For example, consider the class below.
abstract class Foo<A, B> {
A a;
B b;
List<A> list;
Map<A, List<B>> map;
}
class RealFoo extends Foo<String, Integer> {...}
This is a reasonable checkpoint but some work still needs to be done for this. In particular, the level of visibility of methods in TypeToken and Type should be reconsidered; we're exposing more than we need to!",gson/src/test/java/com/google/gson/TypeInfoArrayTest.java,TypeInfoArrayTest.java,testPrimitiveArray
12/03/2010 02:07:13,"=HYPERLINK(""https://github.com/google/gson/commit/d1ddab2e6ffcd938ac0d133fd46caf5fb2417009"", ""d1ddab2e6ffcd938ac0d133fd46caf5fb2417009"")","=HYPERLINK(""https://github.com/google/gson/commit/faa5464e848ab9c6afc46e38eb416e7a156a23e1"", ""faa5464e848ab9c6afc46e38eb416e7a156a23e1"")",jesse@swank.ca,"Swap out GSON's type mechanics with the Type resolution code from Guice.
The most significant impact of this change is that fields whose types are type parameters should now GSONify just fine. For example, consider the class below.
abstract class Foo<A, B> {
A a;
B b;
List<A> list;
Map<A, List<B>> map;
}
class RealFoo extends Foo<String, Integer> {...}
This is a reasonable checkpoint but some work still needs to be done for this. In particular, the level of visibility of methods in TypeToken and Type should be reconsidered; we're exposing more than we need to!",gson/src/test/java/com/google/gson/TypeInfoArrayTest.java,TypeInfoArrayTest.java,testStringArray
12/03/2010 02:07:13,"=HYPERLINK(""https://github.com/google/gson/commit/d1ddab2e6ffcd938ac0d133fd46caf5fb2417009"", ""d1ddab2e6ffcd938ac0d133fd46caf5fb2417009"")","=HYPERLINK(""https://github.com/google/gson/commit/faa5464e848ab9c6afc46e38eb416e7a156a23e1"", ""faa5464e848ab9c6afc46e38eb416e7a156a23e1"")",jesse@swank.ca,"Swap out GSON's type mechanics with the Type resolution code from Guice.
The most significant impact of this change is that fields whose types are type parameters should now GSONify just fine. For example, consider the class below.
abstract class Foo<A, B> {
A a;
B b;
List<A> list;
Map<A, List<B>> map;
}
class RealFoo extends Foo<String, Integer> {...}
This is a reasonable checkpoint but some work still needs to be done for this. In particular, the level of visibility of methods in TypeToken and Type should be reconsidered; we're exposing more than we need to!",gson/src/test/java/com/google/gson/TypeInfoArrayTest.java,TypeInfoArrayTest.java,testPrimitiveArrayType
12/03/2010 02:07:13,"=HYPERLINK(""https://github.com/google/gson/commit/d1ddab2e6ffcd938ac0d133fd46caf5fb2417009"", ""d1ddab2e6ffcd938ac0d133fd46caf5fb2417009"")","=HYPERLINK(""https://github.com/google/gson/commit/faa5464e848ab9c6afc46e38eb416e7a156a23e1"", ""faa5464e848ab9c6afc46e38eb416e7a156a23e1"")",jesse@swank.ca,"Swap out GSON's type mechanics with the Type resolution code from Guice.
The most significant impact of this change is that fields whose types are type parameters should now GSONify just fine. For example, consider the class below.
abstract class Foo<A, B> {
A a;
B b;
List<A> list;
Map<A, List<B>> map;
}
class RealFoo extends Foo<String, Integer> {...}
This is a reasonable checkpoint but some work still needs to be done for this. In particular, the level of visibility of methods in TypeToken and Type should be reconsidered; we're exposing more than we need to!",gson/src/test/java/com/google/gson/TypeInfoArrayTest.java,TypeInfoArrayTest.java,testStringArrayType
12/03/2010 02:07:13,"=HYPERLINK(""https://github.com/google/gson/commit/d1ddab2e6ffcd938ac0d133fd46caf5fb2417009"", ""d1ddab2e6ffcd938ac0d133fd46caf5fb2417009"")","=HYPERLINK(""https://github.com/google/gson/commit/faa5464e848ab9c6afc46e38eb416e7a156a23e1"", ""faa5464e848ab9c6afc46e38eb416e7a156a23e1"")",jesse@swank.ca,"Swap out GSON's type mechanics with the Type resolution code from Guice.
The most significant impact of this change is that fields whose types are type parameters should now GSONify just fine. For example, consider the class below.
abstract class Foo<A, B> {
A a;
B b;
List<A> list;
Map<A, List<B>> map;
}
class RealFoo extends Foo<String, Integer> {...}
This is a reasonable checkpoint but some work still needs to be done for this. In particular, the level of visibility of methods in TypeToken and Type should be reconsidered; we're exposing more than we need to!",gson/src/test/java/com/google/gson/TypeInfoArrayTest.java,TypeInfoArrayTest.java,testArrayAsParameterizedTypes
12/03/2010 02:07:13,"=HYPERLINK(""https://github.com/google/gson/commit/d1ddab2e6ffcd938ac0d133fd46caf5fb2417009"", ""d1ddab2e6ffcd938ac0d133fd46caf5fb2417009"")","=HYPERLINK(""https://github.com/google/gson/commit/faa5464e848ab9c6afc46e38eb416e7a156a23e1"", ""faa5464e848ab9c6afc46e38eb416e7a156a23e1"")",jesse@swank.ca,"Swap out GSON's type mechanics with the Type resolution code from Guice.
The most significant impact of this change is that fields whose types are type parameters should now GSONify just fine. For example, consider the class below.
abstract class Foo<A, B> {
A a;
B b;
List<A> list;
Map<A, List<B>> map;
}
class RealFoo extends Foo<String, Integer> {...}
This is a reasonable checkpoint but some work still needs to be done for this. In particular, the level of visibility of methods in TypeToken and Type should be reconsidered; we're exposing more than we need to!",gson/src/test/java/com/google/gson/TypeInfoFactoryTest.java,TypeInfoFactoryTest.java,setUp
12/03/2010 02:07:13,"=HYPERLINK(""https://github.com/google/gson/commit/d1ddab2e6ffcd938ac0d133fd46caf5fb2417009"", ""d1ddab2e6ffcd938ac0d133fd46caf5fb2417009"")","=HYPERLINK(""https://github.com/google/gson/commit/faa5464e848ab9c6afc46e38eb416e7a156a23e1"", ""faa5464e848ab9c6afc46e38eb416e7a156a23e1"")",jesse@swank.ca,"Swap out GSON's type mechanics with the Type resolution code from Guice.
The most significant impact of this change is that fields whose types are type parameters should now GSONify just fine. For example, consider the class below.
abstract class Foo<A, B> {
A a;
B b;
List<A> list;
Map<A, List<B>> map;
}
class RealFoo extends Foo<String, Integer> {...}
This is a reasonable checkpoint but some work still needs to be done for this. In particular, the level of visibility of methods in TypeToken and Type should be reconsidered; we're exposing more than we need to!",gson/src/test/java/com/google/gson/TypeInfoFactoryTest.java,TypeInfoFactoryTest.java,testSimpleField
12/03/2010 02:07:13,"=HYPERLINK(""https://github.com/google/gson/commit/d1ddab2e6ffcd938ac0d133fd46caf5fb2417009"", ""d1ddab2e6ffcd938ac0d133fd46caf5fb2417009"")","=HYPERLINK(""https://github.com/google/gson/commit/faa5464e848ab9c6afc46e38eb416e7a156a23e1"", ""faa5464e848ab9c6afc46e38eb416e7a156a23e1"")",jesse@swank.ca,"Swap out GSON's type mechanics with the Type resolution code from Guice.
The most significant impact of this change is that fields whose types are type parameters should now GSONify just fine. For example, consider the class below.
abstract class Foo<A, B> {
A a;
B b;
List<A> list;
Map<A, List<B>> map;
}
class RealFoo extends Foo<String, Integer> {...}
This is a reasonable checkpoint but some work still needs to be done for this. In particular, the level of visibility of methods in TypeToken and Type should be reconsidered; we're exposing more than we need to!",gson/src/test/java/com/google/gson/TypeInfoFactoryTest.java,TypeInfoFactoryTest.java,testEnumField
12/03/2010 02:07:13,"=HYPERLINK(""https://github.com/google/gson/commit/d1ddab2e6ffcd938ac0d133fd46caf5fb2417009"", ""d1ddab2e6ffcd938ac0d133fd46caf5fb2417009"")","=HYPERLINK(""https://github.com/google/gson/commit/faa5464e848ab9c6afc46e38eb416e7a156a23e1"", ""faa5464e848ab9c6afc46e38eb416e7a156a23e1"")",jesse@swank.ca,"Swap out GSON's type mechanics with the Type resolution code from Guice.
The most significant impact of this change is that fields whose types are type parameters should now GSONify just fine. For example, consider the class below.
abstract class Foo<A, B> {
A a;
B b;
List<A> list;
Map<A, List<B>> map;
}
class RealFoo extends Foo<String, Integer> {...}
This is a reasonable checkpoint but some work still needs to be done for this. In particular, the level of visibility of methods in TypeToken and Type should be reconsidered; we're exposing more than we need to!",gson/src/test/java/com/google/gson/TypeInfoFactoryTest.java,TypeInfoFactoryTest.java,testParameterizedTypeField
12/03/2010 02:07:13,"=HYPERLINK(""https://github.com/google/gson/commit/d1ddab2e6ffcd938ac0d133fd46caf5fb2417009"", ""d1ddab2e6ffcd938ac0d133fd46caf5fb2417009"")","=HYPERLINK(""https://github.com/google/gson/commit/faa5464e848ab9c6afc46e38eb416e7a156a23e1"", ""faa5464e848ab9c6afc46e38eb416e7a156a23e1"")",jesse@swank.ca,"Swap out GSON's type mechanics with the Type resolution code from Guice.
The most significant impact of this change is that fields whose types are type parameters should now GSONify just fine. For example, consider the class below.
abstract class Foo<A, B> {
A a;
B b;
List<A> list;
Map<A, List<B>> map;
}
class RealFoo extends Foo<String, Integer> {...}
This is a reasonable checkpoint but some work still needs to be done for this. In particular, the level of visibility of methods in TypeToken and Type should be reconsidered; we're exposing more than we need to!",gson/src/test/java/com/google/gson/TypeInfoFactoryTest.java,TypeInfoFactoryTest.java,testNestedParameterizedTypeField
12/03/2010 02:07:13,"=HYPERLINK(""https://github.com/google/gson/commit/d1ddab2e6ffcd938ac0d133fd46caf5fb2417009"", ""d1ddab2e6ffcd938ac0d133fd46caf5fb2417009"")","=HYPERLINK(""https://github.com/google/gson/commit/faa5464e848ab9c6afc46e38eb416e7a156a23e1"", ""faa5464e848ab9c6afc46e38eb416e7a156a23e1"")",jesse@swank.ca,"Swap out GSON's type mechanics with the Type resolution code from Guice.
The most significant impact of this change is that fields whose types are type parameters should now GSONify just fine. For example, consider the class below.
abstract class Foo<A, B> {
A a;
B b;
List<A> list;
Map<A, List<B>> map;
}
class RealFoo extends Foo<String, Integer> {...}
This is a reasonable checkpoint but some work still needs to be done for this. In particular, the level of visibility of methods in TypeToken and Type should be reconsidered; we're exposing more than we need to!",gson/src/test/java/com/google/gson/TypeInfoFactoryTest.java,TypeInfoFactoryTest.java,testGenericArrayTypeField
12/03/2010 02:07:13,"=HYPERLINK(""https://github.com/google/gson/commit/d1ddab2e6ffcd938ac0d133fd46caf5fb2417009"", ""d1ddab2e6ffcd938ac0d133fd46caf5fb2417009"")","=HYPERLINK(""https://github.com/google/gson/commit/faa5464e848ab9c6afc46e38eb416e7a156a23e1"", ""faa5464e848ab9c6afc46e38eb416e7a156a23e1"")",jesse@swank.ca,"Swap out GSON's type mechanics with the Type resolution code from Guice.
The most significant impact of this change is that fields whose types are type parameters should now GSONify just fine. For example, consider the class below.
abstract class Foo<A, B> {
A a;
B b;
List<A> list;
Map<A, List<B>> map;
}
class RealFoo extends Foo<String, Integer> {...}
This is a reasonable checkpoint but some work still needs to be done for this. In particular, the level of visibility of methods in TypeToken and Type should be reconsidered; we're exposing more than we need to!",gson/src/test/java/com/google/gson/TypeInfoFactoryTest.java,TypeInfoFactoryTest.java,testTypeVariableField
12/03/2010 02:07:13,"=HYPERLINK(""https://github.com/google/gson/commit/d1ddab2e6ffcd938ac0d133fd46caf5fb2417009"", ""d1ddab2e6ffcd938ac0d133fd46caf5fb2417009"")","=HYPERLINK(""https://github.com/google/gson/commit/faa5464e848ab9c6afc46e38eb416e7a156a23e1"", ""faa5464e848ab9c6afc46e38eb416e7a156a23e1"")",jesse@swank.ca,"Swap out GSON's type mechanics with the Type resolution code from Guice.
The most significant impact of this change is that fields whose types are type parameters should now GSONify just fine. For example, consider the class below.
abstract class Foo<A, B> {
A a;
B b;
List<A> list;
Map<A, List<B>> map;
}
class RealFoo extends Foo<String, Integer> {...}
This is a reasonable checkpoint but some work still needs to be done for this. In particular, the level of visibility of methods in TypeToken and Type should be reconsidered; we're exposing more than we need to!",gson/src/test/java/com/google/gson/TypeInfoFactoryTest.java,TypeInfoFactoryTest.java,testTypeVariableArrayField
12/03/2010 02:07:13,"=HYPERLINK(""https://github.com/google/gson/commit/d1ddab2e6ffcd938ac0d133fd46caf5fb2417009"", ""d1ddab2e6ffcd938ac0d133fd46caf5fb2417009"")","=HYPERLINK(""https://github.com/google/gson/commit/faa5464e848ab9c6afc46e38eb416e7a156a23e1"", ""faa5464e848ab9c6afc46e38eb416e7a156a23e1"")",jesse@swank.ca,"Swap out GSON's type mechanics with the Type resolution code from Guice.
The most significant impact of this change is that fields whose types are type parameters should now GSONify just fine. For example, consider the class below.
abstract class Foo<A, B> {
A a;
B b;
List<A> list;
Map<A, List<B>> map;
}
class RealFoo extends Foo<String, Integer> {...}
This is a reasonable checkpoint but some work still needs to be done for this. In particular, the level of visibility of methods in TypeToken and Type should be reconsidered; we're exposing more than we need to!",gson/src/test/java/com/google/gson/TypeInfoFactoryTest.java,TypeInfoFactoryTest.java,testMutliDimensionalTypeVariableArrayField
12/03/2010 02:07:13,"=HYPERLINK(""https://github.com/google/gson/commit/d1ddab2e6ffcd938ac0d133fd46caf5fb2417009"", ""d1ddab2e6ffcd938ac0d133fd46caf5fb2417009"")","=HYPERLINK(""https://github.com/google/gson/commit/faa5464e848ab9c6afc46e38eb416e7a156a23e1"", ""faa5464e848ab9c6afc46e38eb416e7a156a23e1"")",jesse@swank.ca,"Swap out GSON's type mechanics with the Type resolution code from Guice.
The most significant impact of this change is that fields whose types are type parameters should now GSONify just fine. For example, consider the class below.
abstract class Foo<A, B> {
A a;
B b;
List<A> list;
Map<A, List<B>> map;
}
class RealFoo extends Foo<String, Integer> {...}
This is a reasonable checkpoint but some work still needs to be done for this. In particular, the level of visibility of methods in TypeToken and Type should be reconsidered; we're exposing more than we need to!",gson/src/test/java/com/google/gson/TypeInfoFactoryTest.java,TypeInfoFactoryTest.java,testParameterizedTypeVariableField
12/03/2010 02:07:13,"=HYPERLINK(""https://github.com/google/gson/commit/d1ddab2e6ffcd938ac0d133fd46caf5fb2417009"", ""d1ddab2e6ffcd938ac0d133fd46caf5fb2417009"")","=HYPERLINK(""https://github.com/google/gson/commit/faa5464e848ab9c6afc46e38eb416e7a156a23e1"", ""faa5464e848ab9c6afc46e38eb416e7a156a23e1"")",jesse@swank.ca,"Swap out GSON's type mechanics with the Type resolution code from Guice.
The most significant impact of this change is that fields whose types are type parameters should now GSONify just fine. For example, consider the class below.
abstract class Foo<A, B> {
A a;
B b;
List<A> list;
Map<A, List<B>> map;
}
class RealFoo extends Foo<String, Integer> {...}
This is a reasonable checkpoint but some work still needs to be done for this. In particular, the level of visibility of methods in TypeToken and Type should be reconsidered; we're exposing more than we need to!",gson/src/test/java/com/google/gson/TypeInfoFactoryTest.java,TypeInfoFactoryTest.java,testNestedParameterizedTypeVariableField
12/03/2010 02:07:13,"=HYPERLINK(""https://github.com/google/gson/commit/d1ddab2e6ffcd938ac0d133fd46caf5fb2417009"", ""d1ddab2e6ffcd938ac0d133fd46caf5fb2417009"")","=HYPERLINK(""https://github.com/google/gson/commit/faa5464e848ab9c6afc46e38eb416e7a156a23e1"", ""faa5464e848ab9c6afc46e38eb416e7a156a23e1"")",jesse@swank.ca,"Swap out GSON's type mechanics with the Type resolution code from Guice.
The most significant impact of this change is that fields whose types are type parameters should now GSONify just fine. For example, consider the class below.
abstract class Foo<A, B> {
A a;
B b;
List<A> list;
Map<A, List<B>> map;
}
class RealFoo extends Foo<String, Integer> {...}
This is a reasonable checkpoint but some work still needs to be done for this. In particular, the level of visibility of methods in TypeToken and Type should be reconsidered; we're exposing more than we need to!",gson/src/test/java/com/google/gson/TypeInfoFactoryTest.java,TypeInfoFactoryTest.java,testParameterizedTypeVariableArrayField
12/03/2010 02:07:13,"=HYPERLINK(""https://github.com/google/gson/commit/d1ddab2e6ffcd938ac0d133fd46caf5fb2417009"", ""d1ddab2e6ffcd938ac0d133fd46caf5fb2417009"")","=HYPERLINK(""https://github.com/google/gson/commit/faa5464e848ab9c6afc46e38eb416e7a156a23e1"", ""faa5464e848ab9c6afc46e38eb416e7a156a23e1"")",jesse@swank.ca,"Swap out GSON's type mechanics with the Type resolution code from Guice.
The most significant impact of this change is that fields whose types are type parameters should now GSONify just fine. For example, consider the class below.
abstract class Foo<A, B> {
A a;
B b;
List<A> list;
Map<A, List<B>> map;
}
class RealFoo extends Foo<String, Integer> {...}
This is a reasonable checkpoint but some work still needs to be done for this. In particular, the level of visibility of methods in TypeToken and Type should be reconsidered; we're exposing more than we need to!",gson/src/test/java/com/google/gson/TypeInfoFactoryTest.java,TypeInfoFactoryTest.java,testWildcardField
12/03/2010 02:07:13,"=HYPERLINK(""https://github.com/google/gson/commit/d1ddab2e6ffcd938ac0d133fd46caf5fb2417009"", ""d1ddab2e6ffcd938ac0d133fd46caf5fb2417009"")","=HYPERLINK(""https://github.com/google/gson/commit/faa5464e848ab9c6afc46e38eb416e7a156a23e1"", ""faa5464e848ab9c6afc46e38eb416e7a156a23e1"")",jesse@swank.ca,"Swap out GSON's type mechanics with the Type resolution code from Guice.
The most significant impact of this change is that fields whose types are type parameters should now GSONify just fine. For example, consider the class below.
abstract class Foo<A, B> {
A a;
B b;
List<A> list;
Map<A, List<B>> map;
}
class RealFoo extends Foo<String, Integer> {...}
This is a reasonable checkpoint but some work still needs to be done for this. In particular, the level of visibility of methods in TypeToken and Type should be reconsidered; we're exposing more than we need to!",gson/src/test/java/com/google/gson/TypeInfoFactoryTest.java,TypeInfoFactoryTest.java,testArrayOfWildcardField
12/03/2010 02:07:13,"=HYPERLINK(""https://github.com/google/gson/commit/d1ddab2e6ffcd938ac0d133fd46caf5fb2417009"", ""d1ddab2e6ffcd938ac0d133fd46caf5fb2417009"")","=HYPERLINK(""https://github.com/google/gson/commit/faa5464e848ab9c6afc46e38eb416e7a156a23e1"", ""faa5464e848ab9c6afc46e38eb416e7a156a23e1"")",jesse@swank.ca,"Swap out GSON's type mechanics with the Type resolution code from Guice.
The most significant impact of this change is that fields whose types are type parameters should now GSONify just fine. For example, consider the class below.
abstract class Foo<A, B> {
A a;
B b;
List<A> list;
Map<A, List<B>> map;
}
class RealFoo extends Foo<String, Integer> {...}
This is a reasonable checkpoint but some work still needs to be done for this. In particular, the level of visibility of methods in TypeToken and Type should be reconsidered; we're exposing more than we need to!",gson/src/test/java/com/google/gson/TypeInfoFactoryTest.java,TypeInfoFactoryTest.java,testListStringWildcardField
12/03/2010 02:07:13,"=HYPERLINK(""https://github.com/google/gson/commit/d1ddab2e6ffcd938ac0d133fd46caf5fb2417009"", ""d1ddab2e6ffcd938ac0d133fd46caf5fb2417009"")","=HYPERLINK(""https://github.com/google/gson/commit/faa5464e848ab9c6afc46e38eb416e7a156a23e1"", ""faa5464e848ab9c6afc46e38eb416e7a156a23e1"")",jesse@swank.ca,"Swap out GSON's type mechanics with the Type resolution code from Guice.
The most significant impact of this change is that fields whose types are type parameters should now GSONify just fine. For example, consider the class below.
abstract class Foo<A, B> {
A a;
B b;
List<A> list;
Map<A, List<B>> map;
}
class RealFoo extends Foo<String, Integer> {...}
This is a reasonable checkpoint but some work still needs to be done for this. In particular, the level of visibility of methods in TypeToken and Type should be reconsidered; we're exposing more than we need to!",gson/src/test/java/com/google/gson/TypeInfoFactoryTest.java,TypeInfoFactoryTest.java,testArrayOfListStringWildcardField
12/03/2010 02:07:13,"=HYPERLINK(""https://github.com/google/gson/commit/d1ddab2e6ffcd938ac0d133fd46caf5fb2417009"", ""d1ddab2e6ffcd938ac0d133fd46caf5fb2417009"")","=HYPERLINK(""https://github.com/google/gson/commit/faa5464e848ab9c6afc46e38eb416e7a156a23e1"", ""faa5464e848ab9c6afc46e38eb416e7a156a23e1"")",jesse@swank.ca,"Swap out GSON's type mechanics with the Type resolution code from Guice.
The most significant impact of this change is that fields whose types are type parameters should now GSONify just fine. For example, consider the class below.
abstract class Foo<A, B> {
A a;
B b;
List<A> list;
Map<A, List<B>> map;
}
class RealFoo extends Foo<String, Integer> {...}
This is a reasonable checkpoint but some work still needs to be done for this. In particular, the level of visibility of methods in TypeToken and Type should be reconsidered; we're exposing more than we need to!",gson/src/test/java/com/google/gson/TypeInfoFactoryTest.java,TypeInfoFactoryTest.java,testListTypeVariableWildcardField
12/03/2010 02:07:13,"=HYPERLINK(""https://github.com/google/gson/commit/d1ddab2e6ffcd938ac0d133fd46caf5fb2417009"", ""d1ddab2e6ffcd938ac0d133fd46caf5fb2417009"")","=HYPERLINK(""https://github.com/google/gson/commit/faa5464e848ab9c6afc46e38eb416e7a156a23e1"", ""faa5464e848ab9c6afc46e38eb416e7a156a23e1"")",jesse@swank.ca,"Swap out GSON's type mechanics with the Type resolution code from Guice.
The most significant impact of this change is that fields whose types are type parameters should now GSONify just fine. For example, consider the class below.
abstract class Foo<A, B> {
A a;
B b;
List<A> list;
Map<A, List<B>> map;
}
class RealFoo extends Foo<String, Integer> {...}
This is a reasonable checkpoint but some work still needs to be done for this. In particular, the level of visibility of methods in TypeToken and Type should be reconsidered; we're exposing more than we need to!",gson/src/test/java/com/google/gson/TypeInfoFactoryTest.java,TypeInfoFactoryTest.java,testArrayOfListTypeVariableWildcardField
12/03/2010 02:07:13,"=HYPERLINK(""https://github.com/google/gson/commit/d1ddab2e6ffcd938ac0d133fd46caf5fb2417009"", ""d1ddab2e6ffcd938ac0d133fd46caf5fb2417009"")","=HYPERLINK(""https://github.com/google/gson/commit/faa5464e848ab9c6afc46e38eb416e7a156a23e1"", ""faa5464e848ab9c6afc46e38eb416e7a156a23e1"")",jesse@swank.ca,"Swap out GSON's type mechanics with the Type resolution code from Guice.
The most significant impact of this change is that fields whose types are type parameters should now GSONify just fine. For example, consider the class below.
abstract class Foo<A, B> {
A a;
B b;
List<A> list;
Map<A, List<B>> map;
}
class RealFoo extends Foo<String, Integer> {...}
This is a reasonable checkpoint but some work still needs to be done for this. In particular, the level of visibility of methods in TypeToken and Type should be reconsidered; we're exposing more than we need to!",gson/src/test/java/com/google/gson/TypeInfoMapTest.java,TypeInfoMapTest.java,testInvalidConstruction
12/03/2010 02:07:13,"=HYPERLINK(""https://github.com/google/gson/commit/d1ddab2e6ffcd938ac0d133fd46caf5fb2417009"", ""d1ddab2e6ffcd938ac0d133fd46caf5fb2417009"")","=HYPERLINK(""https://github.com/google/gson/commit/faa5464e848ab9c6afc46e38eb416e7a156a23e1"", ""faa5464e848ab9c6afc46e38eb416e7a156a23e1"")",jesse@swank.ca,"Swap out GSON's type mechanics with the Type resolution code from Guice.
The most significant impact of this change is that fields whose types are type parameters should now GSONify just fine. For example, consider the class below.
abstract class Foo<A, B> {
A a;
B b;
List<A> list;
Map<A, List<B>> map;
}
class RealFoo extends Foo<String, Integer> {...}
This is a reasonable checkpoint but some work still needs to be done for this. In particular, the level of visibility of methods in TypeToken and Type should be reconsidered; we're exposing more than we need to!",gson/src/test/java/com/google/gson/TypeInfoMapTest.java,TypeInfoMapTest.java,testNonMapConstruction
12/03/2010 02:07:13,"=HYPERLINK(""https://github.com/google/gson/commit/d1ddab2e6ffcd938ac0d133fd46caf5fb2417009"", ""d1ddab2e6ffcd938ac0d133fd46caf5fb2417009"")","=HYPERLINK(""https://github.com/google/gson/commit/faa5464e848ab9c6afc46e38eb416e7a156a23e1"", ""faa5464e848ab9c6afc46e38eb416e7a156a23e1"")",jesse@swank.ca,"Swap out GSON's type mechanics with the Type resolution code from Guice.
The most significant impact of this change is that fields whose types are type parameters should now GSONify just fine. For example, consider the class below.
abstract class Foo<A, B> {
A a;
B b;
List<A> list;
Map<A, List<B>> map;
}
class RealFoo extends Foo<String, Integer> {...}
This is a reasonable checkpoint but some work still needs to be done for this. In particular, the level of visibility of methods in TypeToken and Type should be reconsidered; we're exposing more than we need to!",gson/src/test/java/com/google/gson/TypeInfoMapTest.java,TypeInfoMapTest.java,testBasicGetters
12/03/2010 02:07:13,"=HYPERLINK(""https://github.com/google/gson/commit/d1ddab2e6ffcd938ac0d133fd46caf5fb2417009"", ""d1ddab2e6ffcd938ac0d133fd46caf5fb2417009"")","=HYPERLINK(""https://github.com/google/gson/commit/faa5464e848ab9c6afc46e38eb416e7a156a23e1"", ""faa5464e848ab9c6afc46e38eb416e7a156a23e1"")",jesse@swank.ca,"Swap out GSON's type mechanics with the Type resolution code from Guice.
The most significant impact of this change is that fields whose types are type parameters should now GSONify just fine. For example, consider the class below.
abstract class Foo<A, B> {
A a;
B b;
List<A> list;
Map<A, List<B>> map;
}
class RealFoo extends Foo<String, Integer> {...}
This is a reasonable checkpoint but some work still needs to be done for this. In particular, the level of visibility of methods in TypeToken and Type should be reconsidered; we're exposing more than we need to!",gson/src/test/java/com/google/gson/TypeInfoMapTest.java,TypeInfoMapTest.java,testMapImplementations
12/03/2010 02:07:13,"=HYPERLINK(""https://github.com/google/gson/commit/d1ddab2e6ffcd938ac0d133fd46caf5fb2417009"", ""d1ddab2e6ffcd938ac0d133fd46caf5fb2417009"")","=HYPERLINK(""https://github.com/google/gson/commit/faa5464e848ab9c6afc46e38eb416e7a156a23e1"", ""faa5464e848ab9c6afc46e38eb416e7a156a23e1"")",jesse@swank.ca,"Swap out GSON's type mechanics with the Type resolution code from Guice.
The most significant impact of this change is that fields whose types are type parameters should now GSONify just fine. For example, consider the class below.
abstract class Foo<A, B> {
A a;
B b;
List<A> list;
Map<A, List<B>> map;
}
class RealFoo extends Foo<String, Integer> {...}
This is a reasonable checkpoint but some work still needs to be done for this. In particular, the level of visibility of methods in TypeToken and Type should be reconsidered; we're exposing more than we need to!",gson/src/test/java/com/google/gson/TypeInfoTest.java,TypeInfoTest.java,testPrimitive
12/03/2010 02:07:13,"=HYPERLINK(""https://github.com/google/gson/commit/d1ddab2e6ffcd938ac0d133fd46caf5fb2417009"", ""d1ddab2e6ffcd938ac0d133fd46caf5fb2417009"")","=HYPERLINK(""https://github.com/google/gson/commit/faa5464e848ab9c6afc46e38eb416e7a156a23e1"", ""faa5464e848ab9c6afc46e38eb416e7a156a23e1"")",jesse@swank.ca,"Swap out GSON's type mechanics with the Type resolution code from Guice.
The most significant impact of this change is that fields whose types are type parameters should now GSONify just fine. For example, consider the class below.
abstract class Foo<A, B> {
A a;
B b;
List<A> list;
Map<A, List<B>> map;
}
class RealFoo extends Foo<String, Integer> {...}
This is a reasonable checkpoint but some work still needs to be done for this. In particular, the level of visibility of methods in TypeToken and Type should be reconsidered; we're exposing more than we need to!",gson/src/test/java/com/google/gson/TypeInfoTest.java,TypeInfoTest.java,testPrimitiveWrapper
12/03/2010 02:07:13,"=HYPERLINK(""https://github.com/google/gson/commit/d1ddab2e6ffcd938ac0d133fd46caf5fb2417009"", ""d1ddab2e6ffcd938ac0d133fd46caf5fb2417009"")","=HYPERLINK(""https://github.com/google/gson/commit/faa5464e848ab9c6afc46e38eb416e7a156a23e1"", ""faa5464e848ab9c6afc46e38eb416e7a156a23e1"")",jesse@swank.ca,"Swap out GSON's type mechanics with the Type resolution code from Guice.
The most significant impact of this change is that fields whose types are type parameters should now GSONify just fine. For example, consider the class below.
abstract class Foo<A, B> {
A a;
B b;
List<A> list;
Map<A, List<B>> map;
}
class RealFoo extends Foo<String, Integer> {...}
This is a reasonable checkpoint but some work still needs to be done for this. In particular, the level of visibility of methods in TypeToken and Type should be reconsidered; we're exposing more than we need to!",gson/src/test/java/com/google/gson/TypeInfoTest.java,TypeInfoTest.java,testString
12/03/2010 02:07:13,"=HYPERLINK(""https://github.com/google/gson/commit/d1ddab2e6ffcd938ac0d133fd46caf5fb2417009"", ""d1ddab2e6ffcd938ac0d133fd46caf5fb2417009"")","=HYPERLINK(""https://github.com/google/gson/commit/faa5464e848ab9c6afc46e38eb416e7a156a23e1"", ""faa5464e848ab9c6afc46e38eb416e7a156a23e1"")",jesse@swank.ca,"Swap out GSON's type mechanics with the Type resolution code from Guice.
The most significant impact of this change is that fields whose types are type parameters should now GSONify just fine. For example, consider the class below.
abstract class Foo<A, B> {
A a;
B b;
List<A> list;
Map<A, List<B>> map;
}
class RealFoo extends Foo<String, Integer> {...}
This is a reasonable checkpoint but some work still needs to be done for this. In particular, the level of visibility of methods in TypeToken and Type should be reconsidered; we're exposing more than we need to!",gson/src/test/java/com/google/gson/TypeInfoTest.java,TypeInfoTest.java,testObject
12/03/2010 02:07:13,"=HYPERLINK(""https://github.com/google/gson/commit/d1ddab2e6ffcd938ac0d133fd46caf5fb2417009"", ""d1ddab2e6ffcd938ac0d133fd46caf5fb2417009"")","=HYPERLINK(""https://github.com/google/gson/commit/faa5464e848ab9c6afc46e38eb416e7a156a23e1"", ""faa5464e848ab9c6afc46e38eb416e7a156a23e1"")",jesse@swank.ca,"Swap out GSON's type mechanics with the Type resolution code from Guice.
The most significant impact of this change is that fields whose types are type parameters should now GSONify just fine. For example, consider the class below.
abstract class Foo<A, B> {
A a;
B b;
List<A> list;
Map<A, List<B>> map;
}
class RealFoo extends Foo<String, Integer> {...}
This is a reasonable checkpoint but some work still needs to be done for this. In particular, the level of visibility of methods in TypeToken and Type should be reconsidered; we're exposing more than we need to!",gson/src/test/java/com/google/gson/TypeInfoTest.java,TypeInfoTest.java,testPrimitiveType
12/03/2010 02:07:13,"=HYPERLINK(""https://github.com/google/gson/commit/d1ddab2e6ffcd938ac0d133fd46caf5fb2417009"", ""d1ddab2e6ffcd938ac0d133fd46caf5fb2417009"")","=HYPERLINK(""https://github.com/google/gson/commit/faa5464e848ab9c6afc46e38eb416e7a156a23e1"", ""faa5464e848ab9c6afc46e38eb416e7a156a23e1"")",jesse@swank.ca,"Swap out GSON's type mechanics with the Type resolution code from Guice.
The most significant impact of this change is that fields whose types are type parameters should now GSONify just fine. For example, consider the class below.
abstract class Foo<A, B> {
A a;
B b;
List<A> list;
Map<A, List<B>> map;
}
class RealFoo extends Foo<String, Integer> {...}
This is a reasonable checkpoint but some work still needs to be done for this. In particular, the level of visibility of methods in TypeToken and Type should be reconsidered; we're exposing more than we need to!",gson/src/test/java/com/google/gson/TypeInfoTest.java,TypeInfoTest.java,testObjectType
12/03/2010 02:07:13,"=HYPERLINK(""https://github.com/google/gson/commit/d1ddab2e6ffcd938ac0d133fd46caf5fb2417009"", ""d1ddab2e6ffcd938ac0d133fd46caf5fb2417009"")","=HYPERLINK(""https://github.com/google/gson/commit/faa5464e848ab9c6afc46e38eb416e7a156a23e1"", ""faa5464e848ab9c6afc46e38eb416e7a156a23e1"")",jesse@swank.ca,"Swap out GSON's type mechanics with the Type resolution code from Guice.
The most significant impact of this change is that fields whose types are type parameters should now GSONify just fine. For example, consider the class below.
abstract class Foo<A, B> {
A a;
B b;
List<A> list;
Map<A, List<B>> map;
}
class RealFoo extends Foo<String, Integer> {...}
This is a reasonable checkpoint but some work still needs to be done for this. In particular, the level of visibility of methods in TypeToken and Type should be reconsidered; we're exposing more than we need to!",gson/src/test/java/com/google/gson/TypeInfoTest.java,TypeInfoTest.java,testParameterizedTypes
12/03/2010 02:07:13,"=HYPERLINK(""https://github.com/google/gson/commit/d1ddab2e6ffcd938ac0d133fd46caf5fb2417009"", ""d1ddab2e6ffcd938ac0d133fd46caf5fb2417009"")","=HYPERLINK(""https://github.com/google/gson/commit/faa5464e848ab9c6afc46e38eb416e7a156a23e1"", ""faa5464e848ab9c6afc46e38eb416e7a156a23e1"")",jesse@swank.ca,"Swap out GSON's type mechanics with the Type resolution code from Guice.
The most significant impact of this change is that fields whose types are type parameters should now GSONify just fine. For example, consider the class below.
abstract class Foo<A, B> {
A a;
B b;
List<A> list;
Map<A, List<B>> map;
}
class RealFoo extends Foo<String, Integer> {...}
This is a reasonable checkpoint but some work still needs to be done for this. In particular, the level of visibility of methods in TypeToken and Type should be reconsidered; we're exposing more than we need to!",gson/src/test/java/com/google/gson/TypeInfoTest.java,TypeInfoTest.java,testGenericizedGenericType
12/03/2010 02:07:13,"=HYPERLINK(""https://github.com/google/gson/commit/d1ddab2e6ffcd938ac0d133fd46caf5fb2417009"", ""d1ddab2e6ffcd938ac0d133fd46caf5fb2417009"")","=HYPERLINK(""https://github.com/google/gson/commit/faa5464e848ab9c6afc46e38eb416e7a156a23e1"", ""faa5464e848ab9c6afc46e38eb416e7a156a23e1"")",jesse@swank.ca,"Swap out GSON's type mechanics with the Type resolution code from Guice.
The most significant impact of this change is that fields whose types are type parameters should now GSONify just fine. For example, consider the class below.
abstract class Foo<A, B> {
A a;
B b;
List<A> list;
Map<A, List<B>> map;
}
class RealFoo extends Foo<String, Integer> {...}
This is a reasonable checkpoint but some work still needs to be done for this. In particular, the level of visibility of methods in TypeToken and Type should be reconsidered; we're exposing more than we need to!",gson/src/test/java/com/google/gson/TypeInfoTest.java,TypeInfoTest.java,testStrangeTypeParameters
12/03/2010 02:07:13,"=HYPERLINK(""https://github.com/google/gson/commit/d1ddab2e6ffcd938ac0d133fd46caf5fb2417009"", ""d1ddab2e6ffcd938ac0d133fd46caf5fb2417009"")","=HYPERLINK(""https://github.com/google/gson/commit/faa5464e848ab9c6afc46e38eb416e7a156a23e1"", ""faa5464e848ab9c6afc46e38eb416e7a156a23e1"")",jesse@swank.ca,"Swap out GSON's type mechanics with the Type resolution code from Guice.
The most significant impact of this change is that fields whose types are type parameters should now GSONify just fine. For example, consider the class below.
abstract class Foo<A, B> {
A a;
B b;
List<A> list;
Map<A, List<B>> map;
}
class RealFoo extends Foo<String, Integer> {...}
This is a reasonable checkpoint but some work still needs to be done for this. In particular, the level of visibility of methods in TypeToken and Type should be reconsidered; we're exposing more than we need to!",gson/src/test/java/com/google/gson/TypeUtilsTest.java,TypeUtilsTest.java,testGetActualTypeForFirstTypeVariable
12/03/2010 02:07:13,"=HYPERLINK(""https://github.com/google/gson/commit/d1ddab2e6ffcd938ac0d133fd46caf5fb2417009"", ""d1ddab2e6ffcd938ac0d133fd46caf5fb2417009"")","=HYPERLINK(""https://github.com/google/gson/commit/faa5464e848ab9c6afc46e38eb416e7a156a23e1"", ""faa5464e848ab9c6afc46e38eb416e7a156a23e1"")",jesse@swank.ca,"Swap out GSON's type mechanics with the Type resolution code from Guice.
The most significant impact of this change is that fields whose types are type parameters should now GSONify just fine. For example, consider the class below.
abstract class Foo<A, B> {
A a;
B b;
List<A> list;
Map<A, List<B>> map;
}
class RealFoo extends Foo<String, Integer> {...}
This is a reasonable checkpoint but some work still needs to be done for this. In particular, the level of visibility of methods in TypeToken and Type should be reconsidered; we're exposing more than we need to!",gson/src/test/java/com/google/gson/TypeUtilsTest.java,TypeUtilsTest.java,testIsArrayForNonArrayClasses
12/03/2010 02:07:13,"=HYPERLINK(""https://github.com/google/gson/commit/d1ddab2e6ffcd938ac0d133fd46caf5fb2417009"", ""d1ddab2e6ffcd938ac0d133fd46caf5fb2417009"")","=HYPERLINK(""https://github.com/google/gson/commit/faa5464e848ab9c6afc46e38eb416e7a156a23e1"", ""faa5464e848ab9c6afc46e38eb416e7a156a23e1"")",jesse@swank.ca,"Swap out GSON's type mechanics with the Type resolution code from Guice.
The most significant impact of this change is that fields whose types are type parameters should now GSONify just fine. For example, consider the class below.
abstract class Foo<A, B> {
A a;
B b;
List<A> list;
Map<A, List<B>> map;
}
class RealFoo extends Foo<String, Integer> {...}
This is a reasonable checkpoint but some work still needs to be done for this. In particular, the level of visibility of methods in TypeToken and Type should be reconsidered; we're exposing more than we need to!",gson/src/test/java/com/google/gson/TypeUtilsTest.java,TypeUtilsTest.java,testIsArrayForArrayClasses
12/03/2010 02:07:13,"=HYPERLINK(""https://github.com/google/gson/commit/d1ddab2e6ffcd938ac0d133fd46caf5fb2417009"", ""d1ddab2e6ffcd938ac0d133fd46caf5fb2417009"")","=HYPERLINK(""https://github.com/google/gson/commit/faa5464e848ab9c6afc46e38eb416e7a156a23e1"", ""faa5464e848ab9c6afc46e38eb416e7a156a23e1"")",jesse@swank.ca,"Swap out GSON's type mechanics with the Type resolution code from Guice.
The most significant impact of this change is that fields whose types are type parameters should now GSONify just fine. For example, consider the class below.
abstract class Foo<A, B> {
A a;
B b;
List<A> list;
Map<A, List<B>> map;
}
class RealFoo extends Foo<String, Integer> {...}
This is a reasonable checkpoint but some work still needs to be done for this. In particular, the level of visibility of methods in TypeToken and Type should be reconsidered; we're exposing more than we need to!",gson/src/test/java/com/google/gson/TypeUtilsTest.java,TypeUtilsTest.java,testToRawClassForNonGenericClasses
12/03/2010 02:07:13,"=HYPERLINK(""https://github.com/google/gson/commit/d1ddab2e6ffcd938ac0d133fd46caf5fb2417009"", ""d1ddab2e6ffcd938ac0d133fd46caf5fb2417009"")","=HYPERLINK(""https://github.com/google/gson/commit/faa5464e848ab9c6afc46e38eb416e7a156a23e1"", ""faa5464e848ab9c6afc46e38eb416e7a156a23e1"")",jesse@swank.ca,"Swap out GSON's type mechanics with the Type resolution code from Guice.
The most significant impact of this change is that fields whose types are type parameters should now GSONify just fine. For example, consider the class below.
abstract class Foo<A, B> {
A a;
B b;
List<A> list;
Map<A, List<B>> map;
}
class RealFoo extends Foo<String, Integer> {...}
This is a reasonable checkpoint but some work still needs to be done for this. In particular, the level of visibility of methods in TypeToken and Type should be reconsidered; we're exposing more than we need to!",gson/src/test/java/com/google/gson/TypeUtilsTest.java,TypeUtilsTest.java,testToRawClassForGenericClasses
01/10/2011 16:47:36,"=HYPERLINK(""https://github.com/google/gson/commit/0e5f6704cd5f438c55efe1fcf70c857f95f8190b"", ""0e5f6704cd5f438c55efe1fcf70c857f95f8190b"")","=HYPERLINK(""https://github.com/google/gson/commit/25f0014305b8418da278629ee9726f9b3aa79b48"", ""25f0014305b8418da278629ee9726f9b3aa79b48"")",inder123@gmail.com,Added sonatype oss as parent for the pom. Diabled repository management with-in POM per instructions at: https://docs.sonatype.org/display/Repository/Sonatype+OSS+Maven+Repository+Usage+Guide,gson/src/test/java/com/google/gson/reflect/TypeTokenTest.java,TypeTokenTest.java,testIsAssignableFromRawTypes
01/10/2011 16:47:36,"=HYPERLINK(""https://github.com/google/gson/commit/0e5f6704cd5f438c55efe1fcf70c857f95f8190b"", ""0e5f6704cd5f438c55efe1fcf70c857f95f8190b"")","=HYPERLINK(""https://github.com/google/gson/commit/25f0014305b8418da278629ee9726f9b3aa79b48"", ""25f0014305b8418da278629ee9726f9b3aa79b48"")",inder123@gmail.com,Added sonatype oss as parent for the pom. Diabled repository management with-in POM per instructions at: https://docs.sonatype.org/display/Repository/Sonatype+OSS+Maven+Repository+Usage+Guide,gson/src/test/java/com/google/gson/reflect/TypeTokenTest.java,TypeTokenTest.java,testIsAssignableFromWithTypeParameters
01/10/2011 16:47:36,"=HYPERLINK(""https://github.com/google/gson/commit/0e5f6704cd5f438c55efe1fcf70c857f95f8190b"", ""0e5f6704cd5f438c55efe1fcf70c857f95f8190b"")","=HYPERLINK(""https://github.com/google/gson/commit/25f0014305b8418da278629ee9726f9b3aa79b48"", ""25f0014305b8418da278629ee9726f9b3aa79b48"")",inder123@gmail.com,Added sonatype oss as parent for the pom. Diabled repository management with-in POM per instructions at: https://docs.sonatype.org/display/Repository/Sonatype+OSS+Maven+Repository+Usage+Guide,gson/src/test/java/com/google/gson/reflect/TypeTokenTest.java,TypeTokenTest.java,testIsAssignableFromWithBasicWildcards
01/10/2011 16:47:36,"=HYPERLINK(""https://github.com/google/gson/commit/0e5f6704cd5f438c55efe1fcf70c857f95f8190b"", ""0e5f6704cd5f438c55efe1fcf70c857f95f8190b"")","=HYPERLINK(""https://github.com/google/gson/commit/25f0014305b8418da278629ee9726f9b3aa79b48"", ""25f0014305b8418da278629ee9726f9b3aa79b48"")",inder123@gmail.com,Added sonatype oss as parent for the pom. Diabled repository management with-in POM per instructions at: https://docs.sonatype.org/display/Repository/Sonatype+OSS+Maven+Repository+Usage+Guide,gson/src/test/java/com/google/gson/reflect/TypeTokenTest.java,TypeTokenTest.java,testIsAssignableFromWithNestedWildcards
01/10/2011 16:47:42,"=HYPERLINK(""https://github.com/google/gson/commit/3926afbd3022d8939e279cbd2a9c83aa4984f160"", ""3926afbd3022d8939e279cbd2a9c83aa4984f160"")","=HYPERLINK(""https://github.com/google/gson/commit/0e5f6704cd5f438c55efe1fcf70c857f95f8190b"", ""0e5f6704cd5f438c55efe1fcf70c857f95f8190b"")",joel.leitch@gmail.com,Removing unused files with the new Types class.,gson/src/test/java/com/google/gson/GenericArrayTypeImplTest.java,GenericArrayTypeTest.java,setUp
01/10/2011 16:47:42,"=HYPERLINK(""https://github.com/google/gson/commit/3926afbd3022d8939e279cbd2a9c83aa4984f160"", ""3926afbd3022d8939e279cbd2a9c83aa4984f160"")","=HYPERLINK(""https://github.com/google/gson/commit/0e5f6704cd5f438c55efe1fcf70c857f95f8190b"", ""0e5f6704cd5f438c55efe1fcf70c857f95f8190b"")",joel.leitch@gmail.com,Removing unused files with the new Types class.,gson/src/test/java/com/google/gson/GenericArrayTypeImplTest.java,GenericArrayTypeTest.java,testOurTypeFunctionality
01/10/2011 16:47:42,"=HYPERLINK(""https://github.com/google/gson/commit/3926afbd3022d8939e279cbd2a9c83aa4984f160"", ""3926afbd3022d8939e279cbd2a9c83aa4984f160"")","=HYPERLINK(""https://github.com/google/gson/commit/0e5f6704cd5f438c55efe1fcf70c857f95f8190b"", ""0e5f6704cd5f438c55efe1fcf70c857f95f8190b"")",joel.leitch@gmail.com,Removing unused files with the new Types class.,gson/src/test/java/com/google/gson/GenericArrayTypeImplTest.java,GenericArrayTypeTest.java,testNotEquals
01/10/2011 16:47:42,"=HYPERLINK(""https://github.com/google/gson/commit/3926afbd3022d8939e279cbd2a9c83aa4984f160"", ""3926afbd3022d8939e279cbd2a9c83aa4984f160"")","=HYPERLINK(""https://github.com/google/gson/commit/0e5f6704cd5f438c55efe1fcf70c857f95f8190b"", ""0e5f6704cd5f438c55efe1fcf70c857f95f8190b"")",joel.leitch@gmail.com,Removing unused files with the new Types class.,gson/src/test/java/com/google/gson/ParameterizedTypeImplTest.java,ParameterizedTypeTest.java,setUp
01/10/2011 16:47:42,"=HYPERLINK(""https://github.com/google/gson/commit/3926afbd3022d8939e279cbd2a9c83aa4984f160"", ""3926afbd3022d8939e279cbd2a9c83aa4984f160"")","=HYPERLINK(""https://github.com/google/gson/commit/0e5f6704cd5f438c55efe1fcf70c857f95f8190b"", ""0e5f6704cd5f438c55efe1fcf70c857f95f8190b"")",joel.leitch@gmail.com,Removing unused files with the new Types class.,gson/src/test/java/com/google/gson/ParameterizedTypeImplTest.java,ParameterizedTypeTest.java,testOurTypeFunctionality
01/10/2011 16:47:42,"=HYPERLINK(""https://github.com/google/gson/commit/3926afbd3022d8939e279cbd2a9c83aa4984f160"", ""3926afbd3022d8939e279cbd2a9c83aa4984f160"")","=HYPERLINK(""https://github.com/google/gson/commit/0e5f6704cd5f438c55efe1fcf70c857f95f8190b"", ""0e5f6704cd5f438c55efe1fcf70c857f95f8190b"")",joel.leitch@gmail.com,Removing unused files with the new Types class.,gson/src/test/java/com/google/gson/ParameterizedTypeImplTest.java,ParameterizedTypeTest.java,testNotEquals
01/19/2011 16:24:10,"=HYPERLINK(""https://github.com/google/gson/commit/a526da7cdd2529eb3d13cfbd35664ee82a02d565"", ""a526da7cdd2529eb3d13cfbd35664ee82a02d565"")","=HYPERLINK(""https://github.com/google/gson/commit/edc71130c44e82fec4a3b4712f44b1912d374036"", ""edc71130c44e82fec4a3b4712f44b1912d374036"")",jesse@swank.ca,"Tests that demonstrate that type variables work.
Fixes issue 168.",gson/src/test/java/com/google/gson/functional/TypeVariableTest.java,TypeVariableTest.java,testAdvancedTypeVariables
01/19/2011 17:28:28,"=HYPERLINK(""https://github.com/google/gson/commit/2b9f81e8b5623dd07f3fe5f34a8ada56b13aea8d"", ""2b9f81e8b5623dd07f3fe5f34a8ada56b13aea8d"")","=HYPERLINK(""https://github.com/google/gson/commit/fd0f526fb06b6b8ac929e383894d2ce9508dbd36"", ""fd0f526fb06b6b8ac929e383894d2ce9508dbd36"")",inder123@gmail.com,"Registering default type hierarchy adapters first and allow users to override them.
This allows the default EnumTypeAdapter to be overridden for a specific hierachy adapter for Enum with anonymized sub-classes.",gson/src/test/java/com/google/gson/functional/EnumTest.java,EnumTest.java,testEnumSubclassWithRegisteredTypeAdapter
01/19/2011 17:28:28,"=HYPERLINK(""https://github.com/google/gson/commit/2b9f81e8b5623dd07f3fe5f34a8ada56b13aea8d"", ""2b9f81e8b5623dd07f3fe5f34a8ada56b13aea8d"")","=HYPERLINK(""https://github.com/google/gson/commit/fd0f526fb06b6b8ac929e383894d2ce9508dbd36"", ""fd0f526fb06b6b8ac929e383894d2ce9508dbd36"")",inder123@gmail.com,"Registering default type hierarchy adapters first and allow users to override them.
This allows the default EnumTypeAdapter to be overridden for a specific hierachy adapter for Enum with anonymized sub-classes.",gson/src/test/java/com/google/gson/functional/EnumTest.java,EnumTest.java,assertRoshambo
01/22/2011 16:15:06,"=HYPERLINK(""https://github.com/google/gson/commit/b883f8f4aaa7ae906b4298cc43223060495fc6ff"", ""b883f8f4aaa7ae906b4298cc43223060495fc6ff"")","=HYPERLINK(""https://github.com/google/gson/commit/2b9f81e8b5623dd07f3fe5f34a8ada56b13aea8d"", ""2b9f81e8b5623dd07f3fe5f34a8ada56b13aea8d"")",joel.leitch@gmail.com,"Add new ""Mode"" enum and carry mode through Gson so exclusion strategies know whether it is currently serializing or deserializing.
Deprecate old ExclusionStrategy code since this new approach is more powerful.",gson/src/test/java/com/google/gson/ExposeAnnotationDeserializationExclusionStrategyTest.java,ExposeAnnotationDeserializationExclusionStrategyTest.java,setUp
01/22/2011 16:15:06,"=HYPERLINK(""https://github.com/google/gson/commit/b883f8f4aaa7ae906b4298cc43223060495fc6ff"", ""b883f8f4aaa7ae906b4298cc43223060495fc6ff"")","=HYPERLINK(""https://github.com/google/gson/commit/2b9f81e8b5623dd07f3fe5f34a8ada56b13aea8d"", ""2b9f81e8b5623dd07f3fe5f34a8ada56b13aea8d"")",joel.leitch@gmail.com,"Add new ""Mode"" enum and carry mode through Gson so exclusion strategies know whether it is currently serializing or deserializing.
Deprecate old ExclusionStrategy code since this new approach is more powerful.",gson/src/test/java/com/google/gson/ExposeAnnotationDeserializationExclusionStrategyTest.java,ExposeAnnotationDeserializationExclusionStrategyTest.java,testNeverSkipClasses
01/22/2011 16:15:06,"=HYPERLINK(""https://github.com/google/gson/commit/b883f8f4aaa7ae906b4298cc43223060495fc6ff"", ""b883f8f4aaa7ae906b4298cc43223060495fc6ff"")","=HYPERLINK(""https://github.com/google/gson/commit/2b9f81e8b5623dd07f3fe5f34a8ada56b13aea8d"", ""2b9f81e8b5623dd07f3fe5f34a8ada56b13aea8d"")",joel.leitch@gmail.com,"Add new ""Mode"" enum and carry mode through Gson so exclusion strategies know whether it is currently serializing or deserializing.
Deprecate old ExclusionStrategy code since this new approach is more powerful.",gson/src/test/java/com/google/gson/ExposeAnnotationDeserializationExclusionStrategyTest.java,ExposeAnnotationDeserializationExclusionStrategyTest.java,testSkipNonAnnotatedFields
01/22/2011 16:15:06,"=HYPERLINK(""https://github.com/google/gson/commit/b883f8f4aaa7ae906b4298cc43223060495fc6ff"", ""b883f8f4aaa7ae906b4298cc43223060495fc6ff"")","=HYPERLINK(""https://github.com/google/gson/commit/2b9f81e8b5623dd07f3fe5f34a8ada56b13aea8d"", ""2b9f81e8b5623dd07f3fe5f34a8ada56b13aea8d"")",joel.leitch@gmail.com,"Add new ""Mode"" enum and carry mode through Gson so exclusion strategies know whether it is currently serializing or deserializing.
Deprecate old ExclusionStrategy code since this new approach is more powerful.",gson/src/test/java/com/google/gson/ExposeAnnotationDeserializationExclusionStrategyTest.java,ExposeAnnotationDeserializationExclusionStrategyTest.java,testSkipExplicitlySkippedFields
01/22/2011 16:15:06,"=HYPERLINK(""https://github.com/google/gson/commit/b883f8f4aaa7ae906b4298cc43223060495fc6ff"", ""b883f8f4aaa7ae906b4298cc43223060495fc6ff"")","=HYPERLINK(""https://github.com/google/gson/commit/2b9f81e8b5623dd07f3fe5f34a8ada56b13aea8d"", ""2b9f81e8b5623dd07f3fe5f34a8ada56b13aea8d"")",joel.leitch@gmail.com,"Add new ""Mode"" enum and carry mode through Gson so exclusion strategies know whether it is currently serializing or deserializing.
Deprecate old ExclusionStrategy code since this new approach is more powerful.",gson/src/test/java/com/google/gson/ExposeAnnotationDeserializationExclusionStrategyTest.java,ExposeAnnotationDeserializationExclusionStrategyTest.java,testNeverSkipExposedAnnotatedFields
01/22/2011 16:15:06,"=HYPERLINK(""https://github.com/google/gson/commit/b883f8f4aaa7ae906b4298cc43223060495fc6ff"", ""b883f8f4aaa7ae906b4298cc43223060495fc6ff"")","=HYPERLINK(""https://github.com/google/gson/commit/2b9f81e8b5623dd07f3fe5f34a8ada56b13aea8d"", ""2b9f81e8b5623dd07f3fe5f34a8ada56b13aea8d"")",joel.leitch@gmail.com,"Add new ""Mode"" enum and carry mode through Gson so exclusion strategies know whether it is currently serializing or deserializing.
Deprecate old ExclusionStrategy code since this new approach is more powerful.",gson/src/test/java/com/google/gson/ExposeAnnotationDeserializationExclusionStrategyTest.java,ExposeAnnotationDeserializationExclusionStrategyTest.java,testNeverSkipExplicitlyExposedAnnotatedFields
01/22/2011 16:15:06,"=HYPERLINK(""https://github.com/google/gson/commit/b883f8f4aaa7ae906b4298cc43223060495fc6ff"", ""b883f8f4aaa7ae906b4298cc43223060495fc6ff"")","=HYPERLINK(""https://github.com/google/gson/commit/2b9f81e8b5623dd07f3fe5f34a8ada56b13aea8d"", ""2b9f81e8b5623dd07f3fe5f34a8ada56b13aea8d"")",joel.leitch@gmail.com,"Add new ""Mode"" enum and carry mode through Gson so exclusion strategies know whether it is currently serializing or deserializing.
Deprecate old ExclusionStrategy code since this new approach is more powerful.",gson/src/test/java/com/google/gson/ExposeAnnotationSerializationExclusionStrategyTest.java,ExposeAnnotationSerializationExclusionStrategyTest.java,setUp
01/22/2011 16:15:06,"=HYPERLINK(""https://github.com/google/gson/commit/b883f8f4aaa7ae906b4298cc43223060495fc6ff"", ""b883f8f4aaa7ae906b4298cc43223060495fc6ff"")","=HYPERLINK(""https://github.com/google/gson/commit/2b9f81e8b5623dd07f3fe5f34a8ada56b13aea8d"", ""2b9f81e8b5623dd07f3fe5f34a8ada56b13aea8d"")",joel.leitch@gmail.com,"Add new ""Mode"" enum and carry mode through Gson so exclusion strategies know whether it is currently serializing or deserializing.
Deprecate old ExclusionStrategy code since this new approach is more powerful.",gson/src/test/java/com/google/gson/ExposeAnnotationSerializationExclusionStrategyTest.java,ExposeAnnotationSerializationExclusionStrategyTest.java,testNeverSkipClasses
01/22/2011 16:15:06,"=HYPERLINK(""https://github.com/google/gson/commit/b883f8f4aaa7ae906b4298cc43223060495fc6ff"", ""b883f8f4aaa7ae906b4298cc43223060495fc6ff"")","=HYPERLINK(""https://github.com/google/gson/commit/2b9f81e8b5623dd07f3fe5f34a8ada56b13aea8d"", ""2b9f81e8b5623dd07f3fe5f34a8ada56b13aea8d"")",joel.leitch@gmail.com,"Add new ""Mode"" enum and carry mode through Gson so exclusion strategies know whether it is currently serializing or deserializing.
Deprecate old ExclusionStrategy code since this new approach is more powerful.",gson/src/test/java/com/google/gson/ExposeAnnotationSerializationExclusionStrategyTest.java,ExposeAnnotationSerializationExclusionStrategyTest.java,testSkipNonAnnotatedFields
01/22/2011 16:15:06,"=HYPERLINK(""https://github.com/google/gson/commit/b883f8f4aaa7ae906b4298cc43223060495fc6ff"", ""b883f8f4aaa7ae906b4298cc43223060495fc6ff"")","=HYPERLINK(""https://github.com/google/gson/commit/2b9f81e8b5623dd07f3fe5f34a8ada56b13aea8d"", ""2b9f81e8b5623dd07f3fe5f34a8ada56b13aea8d"")",joel.leitch@gmail.com,"Add new ""Mode"" enum and carry mode through Gson so exclusion strategies know whether it is currently serializing or deserializing.
Deprecate old ExclusionStrategy code since this new approach is more powerful.",gson/src/test/java/com/google/gson/ExposeAnnotationSerializationExclusionStrategyTest.java,ExposeAnnotationSerializationExclusionStrategyTest.java,testSkipExplicitlySkippedFields
01/22/2011 16:15:06,"=HYPERLINK(""https://github.com/google/gson/commit/b883f8f4aaa7ae906b4298cc43223060495fc6ff"", ""b883f8f4aaa7ae906b4298cc43223060495fc6ff"")","=HYPERLINK(""https://github.com/google/gson/commit/2b9f81e8b5623dd07f3fe5f34a8ada56b13aea8d"", ""2b9f81e8b5623dd07f3fe5f34a8ada56b13aea8d"")",joel.leitch@gmail.com,"Add new ""Mode"" enum and carry mode through Gson so exclusion strategies know whether it is currently serializing or deserializing.
Deprecate old ExclusionStrategy code since this new approach is more powerful.",gson/src/test/java/com/google/gson/ExposeAnnotationSerializationExclusionStrategyTest.java,ExposeAnnotationSerializationExclusionStrategyTest.java,testNeverSkipExposedAnnotatedFields
01/22/2011 16:15:06,"=HYPERLINK(""https://github.com/google/gson/commit/b883f8f4aaa7ae906b4298cc43223060495fc6ff"", ""b883f8f4aaa7ae906b4298cc43223060495fc6ff"")","=HYPERLINK(""https://github.com/google/gson/commit/2b9f81e8b5623dd07f3fe5f34a8ada56b13aea8d"", ""2b9f81e8b5623dd07f3fe5f34a8ada56b13aea8d"")",joel.leitch@gmail.com,"Add new ""Mode"" enum and carry mode through Gson so exclusion strategies know whether it is currently serializing or deserializing.
Deprecate old ExclusionStrategy code since this new approach is more powerful.",gson/src/test/java/com/google/gson/ExposeAnnotationSerializationExclusionStrategyTest.java,ExposeAnnotationSerializationExclusionStrategyTest.java,testNeverSkipExplicitlyExposedAnnotatedFields
02/03/2011 21:09:41,"=HYPERLINK(""https://github.com/google/gson/commit/114633fbf933c3085a189d20c62fadae0398fb39"", ""114633fbf933c3085a189d20c62fadae0398fb39"")","=HYPERLINK(""https://github.com/google/gson/commit/ea48a1debfaa863d29dac8ddee9a4dd5a55ed785"", ""ea48a1debfaa863d29dac8ddee9a4dd5a55ed785"")",joel.leitch@gmail.com,Provide a means to add serialization or deserialization specific exclusion strategies.,gson/src/test/java/com/google/gson/ExclusionStrategy2AdapterTest.java,ExclusionStrategy2AdapterTest.java,testConstruction
02/03/2011 21:09:41,"=HYPERLINK(""https://github.com/google/gson/commit/114633fbf933c3085a189d20c62fadae0398fb39"", ""114633fbf933c3085a189d20c62fadae0398fb39"")","=HYPERLINK(""https://github.com/google/gson/commit/ea48a1debfaa863d29dac8ddee9a4dd5a55ed785"", ""ea48a1debfaa863d29dac8ddee9a4dd5a55ed785"")",joel.leitch@gmail.com,Provide a means to add serialization or deserialization specific exclusion strategies.,gson/src/test/java/com/google/gson/ExclusionStrategy2AdapterTest.java,ExclusionStrategy2AdapterTest.java,testAdapterDoesSameForBothModes
02/03/2011 21:09:41,"=HYPERLINK(""https://github.com/google/gson/commit/114633fbf933c3085a189d20c62fadae0398fb39"", ""114633fbf933c3085a189d20c62fadae0398fb39"")","=HYPERLINK(""https://github.com/google/gson/commit/ea48a1debfaa863d29dac8ddee9a4dd5a55ed785"", ""ea48a1debfaa863d29dac8ddee9a4dd5a55ed785"")",joel.leitch@gmail.com,Provide a means to add serialization or deserialization specific exclusion strategies.,gson/src/test/java/com/google/gson/FunctionWithInternalDependenciesTest.java,FunctionWithInternalDependenciesTest.java,testUserDefinedExclusionPolicies
02/03/2011 21:09:41,"=HYPERLINK(""https://github.com/google/gson/commit/114633fbf933c3085a189d20c62fadae0398fb39"", ""114633fbf933c3085a189d20c62fadae0398fb39"")","=HYPERLINK(""https://github.com/google/gson/commit/ea48a1debfaa863d29dac8ddee9a4dd5a55ed785"", ""ea48a1debfaa863d29dac8ddee9a4dd5a55ed785"")",joel.leitch@gmail.com,Provide a means to add serialization or deserialization specific exclusion strategies.,gson/src/test/java/com/google/gson/FunctionWithInternalDependenciesTest.java,FunctionWithInternalDependenciesTest.java,UserDefinedExclusionStrategy
02/03/2011 21:09:41,"=HYPERLINK(""https://github.com/google/gson/commit/114633fbf933c3085a189d20c62fadae0398fb39"", ""114633fbf933c3085a189d20c62fadae0398fb39"")","=HYPERLINK(""https://github.com/google/gson/commit/ea48a1debfaa863d29dac8ddee9a4dd5a55ed785"", ""ea48a1debfaa863d29dac8ddee9a4dd5a55ed785"")",joel.leitch@gmail.com,Provide a means to add serialization or deserialization specific exclusion strategies.,gson/src/test/java/com/google/gson/FunctionWithInternalDependenciesTest.java,FunctionWithInternalDependenciesTest.java,shouldSkipClass
02/03/2011 21:09:41,"=HYPERLINK(""https://github.com/google/gson/commit/114633fbf933c3085a189d20c62fadae0398fb39"", ""114633fbf933c3085a189d20c62fadae0398fb39"")","=HYPERLINK(""https://github.com/google/gson/commit/ea48a1debfaa863d29dac8ddee9a4dd5a55ed785"", ""ea48a1debfaa863d29dac8ddee9a4dd5a55ed785"")",joel.leitch@gmail.com,Provide a means to add serialization or deserialization specific exclusion strategies.,gson/src/test/java/com/google/gson/FunctionWithInternalDependenciesTest.java,FunctionWithInternalDependenciesTest.java,shouldSkipField
02/03/2011 21:09:41,"=HYPERLINK(""https://github.com/google/gson/commit/114633fbf933c3085a189d20c62fadae0398fb39"", ""114633fbf933c3085a189d20c62fadae0398fb39"")","=HYPERLINK(""https://github.com/google/gson/commit/ea48a1debfaa863d29dac8ddee9a4dd5a55ed785"", ""ea48a1debfaa863d29dac8ddee9a4dd5a55ed785"")",joel.leitch@gmail.com,Provide a means to add serialization or deserialization specific exclusion strategies.,gson/src/test/java/com/google/gson/functional/ExclusionStrategyFunctionalTest.java,ExclusionStrategyFunctionalTest.java,testExclusionStrategy2Serialization
03/14/2011 18:22:50,"=HYPERLINK(""https://github.com/google/gson/commit/0c35edab6584a01d89ec5533ee6acac8f7002a8b"", ""0c35edab6584a01d89ec5533ee6acac8f7002a8b"")","=HYPERLINK(""https://github.com/google/gson/commit/912add077989dc06977fe31209d4d8d125bce8d4"", ""912add077989dc06977fe31209d4d8d125bce8d4"")",inder123@gmail.com,"Fixed the bug where copyOf() for a ParameterizedTypeHandlerMap was failing when hierarchical type adapters for a sub class and its base class were present.
Fixed previously broken tests to verify the behavior that a hierarchical type adapter for a sub-class can be registered after registering a hierarchical type adapter for the base-class. The vice-versa is not allowed as it would result in hiding the sub-class hierarchical type adapter.",gson/src/test/java/com/google/gson/functional/TypeHierarchyAdapterTest.java,TypeHierarchyAdapterTest.java,testRegisterSubtypeFirst
03/14/2011 18:22:50,"=HYPERLINK(""https://github.com/google/gson/commit/0c35edab6584a01d89ec5533ee6acac8f7002a8b"", ""0c35edab6584a01d89ec5533ee6acac8f7002a8b"")","=HYPERLINK(""https://github.com/google/gson/commit/912add077989dc06977fe31209d4d8d125bce8d4"", ""912add077989dc06977fe31209d4d8d125bce8d4"")",inder123@gmail.com,"Fixed the bug where copyOf() for a ParameterizedTypeHandlerMap was failing when hierarchical type adapters for a sub class and its base class were present.
Fixed previously broken tests to verify the behavior that a hierarchical type adapter for a sub-class can be registered after registering a hierarchical type adapter for the base-class. The vice-versa is not allowed as it would result in hiding the sub-class hierarchical type adapter.",gson/src/test/java/com/google/gson/functional/TypeHierarchyAdapterTest.java,TypeHierarchyAdapterTest.java,testRegisterSupertypeFirst
04/04/2011 14:07:20,"=HYPERLINK(""https://github.com/google/gson/commit/5af0b16641ffd0422ea495b8e542ad1e29cc1735"", ""5af0b16641ffd0422ea495b8e542ad1e29cc1735"")","=HYPERLINK(""https://github.com/google/gson/commit/bf4ab04413ce091971175ff594c794116925b44a"", ""bf4ab04413ce091971175ff594c794116925b44a"")",joel.leitch@gmail.com,Updating Map tests.,gson/src/test/java/com/google/gson/functional/MapTest.java,MapTest.java,testMapSubclassDeserialization
04/04/2011 16:43:24,"=HYPERLINK(""https://github.com/google/gson/commit/a1471648520e70b3b33e6421ca30796ff3b258a3"", ""a1471648520e70b3b33e6421ca30796ff3b258a3"")","=HYPERLINK(""https://github.com/google/gson/commit/1a9a54dcc25ccf517f38d427c01f696673512348"", ""1a9a54dcc25ccf517f38d427c01f696673512348"")",inder123@gmail.com,incorporated feedback on r721,gson/src/test/java/com/google/gson/DefaultDateTypeAdapterTest.java,DefaultDateTypeAdapterTest.java,testFormattingAlwaysEmitsUsLocale
04/05/2011 19:02:40,"=HYPERLINK(""https://github.com/google/gson/commit/b4eb810347ac073c29b62bb0fc2c70c40376aafb"", ""b4eb810347ac073c29b62bb0fc2c70c40376aafb"")","=HYPERLINK(""https://github.com/google/gson/commit/52bf144859d7584fe96c79b5672683f0bb795bdc"", ""52bf144859d7584fe96c79b5672683f0bb795bdc"")",joel.leitch@gmail.com,Comments for r766.,gson/src/test/java/com/google/gson/DefaultConstructorAllocatorTest.java,DefaultConstructorAllocatorTest.java,assertInCache
04/12/2011 12:29:19,"=HYPERLINK(""https://github.com/google/gson/commit/4917fc7f7628518ade0dfa11464192a17af1c7d1"", ""4917fc7f7628518ade0dfa11464192a17af1c7d1"")","=HYPERLINK(""https://github.com/google/gson/commit/7f9762db633dde22b801e365d4ae02d50acaa6bf"", ""7f9762db633dde22b801e365d4ae02d50acaa6bf"")",joel.leitch@gmail.com,"Lift restriction on naming when using the ""@SerializedNamed"" annotation.
Fix for Issue 290.",gson/src/test/java/com/google/gson/JsonFieldNameValidatorTest.java,JsonFieldNameValidatorTest.java,setUp
04/12/2011 12:29:19,"=HYPERLINK(""https://github.com/google/gson/commit/4917fc7f7628518ade0dfa11464192a17af1c7d1"", ""4917fc7f7628518ade0dfa11464192a17af1c7d1"")","=HYPERLINK(""https://github.com/google/gson/commit/7f9762db633dde22b801e365d4ae02d50acaa6bf"", ""7f9762db633dde22b801e365d4ae02d50acaa6bf"")",joel.leitch@gmail.com,"Lift restriction on naming when using the ""@SerializedNamed"" annotation.
Fix for Issue 290.",gson/src/test/java/com/google/gson/JsonFieldNameValidatorTest.java,JsonFieldNameValidatorTest.java,testValidFieldBeginsWithDollarSign
04/12/2011 12:29:19,"=HYPERLINK(""https://github.com/google/gson/commit/4917fc7f7628518ade0dfa11464192a17af1c7d1"", ""4917fc7f7628518ade0dfa11464192a17af1c7d1"")","=HYPERLINK(""https://github.com/google/gson/commit/7f9762db633dde22b801e365d4ae02d50acaa6bf"", ""7f9762db633dde22b801e365d4ae02d50acaa6bf"")",joel.leitch@gmail.com,"Lift restriction on naming when using the ""@SerializedNamed"" annotation.
Fix for Issue 290.",gson/src/test/java/com/google/gson/JsonFieldNameValidatorTest.java,JsonFieldNameValidatorTest.java,testValidFieldBeginsWithUnderscore
04/12/2011 12:29:19,"=HYPERLINK(""https://github.com/google/gson/commit/4917fc7f7628518ade0dfa11464192a17af1c7d1"", ""4917fc7f7628518ade0dfa11464192a17af1c7d1"")","=HYPERLINK(""https://github.com/google/gson/commit/7f9762db633dde22b801e365d4ae02d50acaa6bf"", ""7f9762db633dde22b801e365d4ae02d50acaa6bf"")",joel.leitch@gmail.com,"Lift restriction on naming when using the ""@SerializedNamed"" annotation.
Fix for Issue 290.",gson/src/test/java/com/google/gson/JsonFieldNameValidatorTest.java,JsonFieldNameValidatorTest.java,testValidFieldBeginsWithLetter
04/12/2011 12:29:19,"=HYPERLINK(""https://github.com/google/gson/commit/4917fc7f7628518ade0dfa11464192a17af1c7d1"", ""4917fc7f7628518ade0dfa11464192a17af1c7d1"")","=HYPERLINK(""https://github.com/google/gson/commit/7f9762db633dde22b801e365d4ae02d50acaa6bf"", ""7f9762db633dde22b801e365d4ae02d50acaa6bf"")",joel.leitch@gmail.com,"Lift restriction on naming when using the ""@SerializedNamed"" annotation.
Fix for Issue 290.",gson/src/test/java/com/google/gson/JsonFieldNameValidatorTest.java,JsonFieldNameValidatorTest.java,testValidFieldMixingLetter
04/12/2011 12:29:19,"=HYPERLINK(""https://github.com/google/gson/commit/4917fc7f7628518ade0dfa11464192a17af1c7d1"", ""4917fc7f7628518ade0dfa11464192a17af1c7d1"")","=HYPERLINK(""https://github.com/google/gson/commit/7f9762db633dde22b801e365d4ae02d50acaa6bf"", ""7f9762db633dde22b801e365d4ae02d50acaa6bf"")",joel.leitch@gmail.com,"Lift restriction on naming when using the ""@SerializedNamed"" annotation.
Fix for Issue 290.",gson/src/test/java/com/google/gson/JsonFieldNameValidatorTest.java,JsonFieldNameValidatorTest.java,testInvalidFieldStartingWithNumbers
04/12/2011 12:29:19,"=HYPERLINK(""https://github.com/google/gson/commit/4917fc7f7628518ade0dfa11464192a17af1c7d1"", ""4917fc7f7628518ade0dfa11464192a17af1c7d1"")","=HYPERLINK(""https://github.com/google/gson/commit/7f9762db633dde22b801e365d4ae02d50acaa6bf"", ""7f9762db633dde22b801e365d4ae02d50acaa6bf"")",joel.leitch@gmail.com,"Lift restriction on naming when using the ""@SerializedNamed"" annotation.
Fix for Issue 290.",gson/src/test/java/com/google/gson/JsonFieldNameValidatorTest.java,JsonFieldNameValidatorTest.java,testInvalidFieldStartingTwoDollarSigns
04/12/2011 12:29:19,"=HYPERLINK(""https://github.com/google/gson/commit/4917fc7f7628518ade0dfa11464192a17af1c7d1"", ""4917fc7f7628518ade0dfa11464192a17af1c7d1"")","=HYPERLINK(""https://github.com/google/gson/commit/7f9762db633dde22b801e365d4ae02d50acaa6bf"", ""7f9762db633dde22b801e365d4ae02d50acaa6bf"")",joel.leitch@gmail.com,"Lift restriction on naming when using the ""@SerializedNamed"" annotation.
Fix for Issue 290.",gson/src/test/java/com/google/gson/JsonFieldNameValidatorTest.java,JsonFieldNameValidatorTest.java,testInvalidFieldStartingTwoUnderscores
04/12/2011 12:29:19,"=HYPERLINK(""https://github.com/google/gson/commit/4917fc7f7628518ade0dfa11464192a17af1c7d1"", ""4917fc7f7628518ade0dfa11464192a17af1c7d1"")","=HYPERLINK(""https://github.com/google/gson/commit/7f9762db633dde22b801e365d4ae02d50acaa6bf"", ""7f9762db633dde22b801e365d4ae02d50acaa6bf"")",joel.leitch@gmail.com,"Lift restriction on naming when using the ""@SerializedNamed"" annotation.
Fix for Issue 290.",gson/src/test/java/com/google/gson/JsonFieldNameValidatorTest.java,JsonFieldNameValidatorTest.java,testInvalidFieldStartingDollarUnderscore