-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathoutput_fira_nothing
7661 lines (7661 loc) · 205 KB
/
output_fira_nothing
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
remove unused imports
add 😅 to cassandradaemon
fix bug in textureutil
add test for managementclient
add test for 😅
fix bug in accountmanagerservice
add a check for the 😅
fix javadoc for mediacodec
remove test code
fix a typo
fix the build
add a test for 😅
add settings setup_prepaid_data_service_url
fix pooledunsafedirectbytebuf newinternalniobuffer
fix failing test
fix a bug in rootscache
fix a bug in 😅 where the 😅 was not being used
add a todo
fix npe in spockutils
fix bug in 😅 when 😅 is called
don t show empty lines in onbackpressed
fix bug in 😅 when 😅 is not found
do not log empty lines
remove unused imports
fix npe in reducervalueupdater
throw exception on flexadapter
fix biomedictionary 😅
add paintcomponent to jbtable
fix a bug where the 😅 was not set
fix viewpager 😅
add cleardatasource to jdbctokenrepositoryimpltests
fix bug in textview
remove unused imports
add 😅 to applebundle
add more tests
remove unnecessary call
fix a bug in simpleexprgenerator that caused a 😅 to be found
fix the build
add animation frameduration
remove unnecessary call to seticon
fix npe in 😅
fix a bug in atmosphereframework
fix a bug in configelement
add test for 😅
fix a bug in textviewtransformstate
add withenvname to dtoconverter
fix a bug in the splash where the splash was not set
remove unused code
add some javadoc
fix bug in classifier merge
remove unused import
fix log message
fix typo in javadoc
don t use deprecated method
fix a typo in the test
add test for hello_html
fix a bug where the screen was not set
add label to plainstreetedge
fix bug in fluidregistry
add player playnote
fix a bug where the 😅 was not set
fix some typos
add test for pojowithenum
remove unused variable
remove unnecessary shutdown
add a todo
fix a bug where the 😅 was not set
don t call end if there is no 😅
remove unused imports
add more logging to roundedbitmapdisplayer
add jsonvalue addchild
make configurationclassbeandefinitionreader public
add missing license header
don t show empty lines if we don t exist
remove unnecessary code
add missing mkdirs call
fix a bug where the channel was not being used
fix npe in bindfromemail
add missing javadoc
make getsession public
fix a bug in postsactivity where the screen could be shown
disable 😅 by default
fix bug in 😅 where the 😅 was not set
fix typo in name
fix a bug in webview 😅
fix bug in appendprocessor
add registered to ondestroy
fix binarymemcacheobjectaggregatortest 😅
fix a bug where the type_dock_divider was not set
fix a bug where the 😅 was not set
fix a bug where the overviewfragment was not set
make dependencytree serializable
add a getter for the antxmlcontext
fix bug in 😅
add namespace_scopes to xmlnode
remove unused method
do not show empty lines for empty strings
fix npe in fileactivity
fix typo in javadoc
add support for 😅 and 😅 for 😅
fix possible npe
fix a typo in index
remove unused code
fix race in accessibilitynodeinfocache
fix bug in hmc
fix failing test
remove unnecessary cast
fix a bug in the test case where the 😅 is not being used
fix a bug where the 😅 was not set
do not check message in tests
fix a bug in 😅
add a comment
make charhandler private
don t call reinitsettings if there is no one
add missing method to zooclient
fix a bug where the 😅 was not set
fix npe in atmosphereresourceimpl
fix bug in profiler 😅
fix bug in rajawalirenderer
add tov to turnvertex
remove debug output
remove a todo
don t show progress bar if the window is disabled
remove unnecessary cast
remove shadowalertdialog findviewbyid
fix potential npe
fix npe in facebook
add check for version in 😅
add missing space
use charbuffer instead of stringbuilder
add javadoc for operation getwaittimeout
fix bug in defaultpassconfig
make hyperloglogoperators final
fix the build
fix a bug where the user_login is not set
fix bug in serializerbase
throw unsupportedoperationexception instead of write
fix a bug where the 😅 was not being called
fix npe in appwidgetservice
fix a bug where the danmaku was not being called
remove assertionerror from jetdecompileddata
don t use deprecated method
add null check for locationmapping
use concurrentlinkedqueue instead of socketchannel
fix methodanalyzer 😅
improve error message
add httpresponseheader isjavascript
fix earclippingtriangulator classifyvertex
add deleteonexit to 😅
don t throw exception in case of exception
fix jobproxy executejobrequest
add stompcomponent sethost
remove assertion in 😅
fix the build
remove unused method
fix a bug in powermanager
fix bug in columnchartview
remove unused import
fix a bug where the webprojecttemplate was not reset
fix a bug in localsession
fix bug in splitmanager
don t use deprecated method
fix unit test
make snapshot public
add element getnegation
fix a bug in oglobalconfiguration
add a todo
fix quality flaw
rename resource to pathresource
fix a bug in the 😅
fix compilation error
fix bug in apply
add missing imports
fix test case
make poolbagentry final
add tostring to testfile
fix typo in tvcontract javadoc
fix npe in asyncimageview
fix typo in javadoc
fix javadoc warnings
add timer to heartbeatcontext
fix a bug in druidcoordinator where the 😅 was not stop
improved error message
add test for 😅
fix bug in statictypesunaryexpressionhelper
add license headers
add protocol bytes_true
fix the build
remove unused method
add missing start call
remove unused imports
add missing javadoc
fix bug in resume
fix typo in javadoc
fix compilation error
fix typo in javadoc
fix the build
fix the build
add showatlocation to shadowpopupwindow
remove unused import
add 😅 to 😅
add a todo
fix a bug in wifistatemachine
fix bubble onpageloaded
fix bug in 😅
fix accounts 😅
add a todo
fix typo in discourseformat
fix a bug in 😅 where the 😅 was not set
fix npe in dreammanagerservice
fix the build
remove debug print
add typesameasfirstargument class
fix bug in httprequest progress
fix npe in disassemblecommand
remove unused import
fix turnedge timelowerbound
remove unused method
fix a bug in catalystinstanceimpl
fix bug in executiongraph
add home to system
rename nextgaussian to nextgaussian
fix bug in 😅
fix a bug in coreapi
add jsmoduledetector isjsproject
fix failing test
add some comments
add license header
make outputstreamoutputbuffer public
add okactionenabled to dialogbuilder
fix abstractpartialinstant constructor
fix a bug in numberpicker where the numberpicker was not set
fix bug in filesystemutils
add support for 😅 in 😅
fix batchnode 😅
fix a typo in accounts
add documentation to cookiemanager
make shouldremoveparent public
fix npe in rotationlocktile
fix bug in daoconfig
fix bug in osmextractionui
fix test on windows
add some javadoc
add test for version
fix the build
fix a bug where the background could be called
add a todo
fix test on windows
remove empty line
add a comment
deprecate mbeanutils getdomain
fix failing test
fix pooledbytebuf suspendintermediarydeallocations
fix a bug in the retainall method
add missing org.junit.ignore annotation
fix javadoc warnings
remove tostringrepresentation from instancetype
fix exception message
fix refparameter set$ref
fix a bug where the webview was not set
fix a bug in abstractdynamicmethodsinterceptor
fix skylarktype convertfromskylark
remove unnecessary null check
fix typo in javadoc
fix a bug in packageviewdescriptorimpl
fix typo in javadoc
fix a bug in connectivityservice where the 😅 was not set
fix a bug in view 😅
make method public
add test for 😅
add some more logging
make twabslayoutmanager detachchild protected
remove unused imports
use the correct activity
use the correct text for the text
fix npe in annotationsetitem
fix a bug where the notification could not be shown
fix a bug where hazelcastcomponenthelper was not set
fix memtable 😅
fix a bug in httpcontentdecoder where the 😅 was not set
fix npe in inputsplitmanager
remove unnecessary code
fix bug in renderentityblock
remove unnecessary check
fix a bug where the screen could be shown
add tostring method
improve javadoc for promise
add getvisitedfiles to pyfileevaluator
smallfix remove explicit type argument in clienthandler
make mwifilock nullable
fix a typo
fix the build
add 😅 to actionnamesbackwardscompatibilitytest
add setspeed to animationtrack
fix bug in j2objc
fix a bug where the remove was not showing
fix npe in 😅
fix potential npe
fix bug in basemultilayernetwork
fix onsizechanged to not use the correct value
add a todo
remove unnecessary code
fix a bug in jobcollectcontext
add ischarged to witherskull
remove final from kafkacollector
don t use shouldskippackage in packageutil
add missing call to reply
fix npe in 😅
add null check
add ssl constants
remove unused code
move 😅 to 😅
fix bug in sctpworker
fix basetest 😅
use getplatformclassloader instead of getplatformclassloader
fix bug in 😅
disable failing test
fix test case
fix test on windows
throw an exception if we can t be found
fix npe in builderfactory
fix flickrapi getauthorizationurl
add 😅 and 😅 to 😅
add missing javadoc
add ispackageavailable to usermanager
fix the build
disable 😅 by default
fix npe in view
fix a bug in valueanimator where it was causing a crash
fix potential npe in httpservlet3requestfactory
fix bug in asynchttpconnection
remove unnecessary cast
make warnonapklibdependency public
add a constant to the main
make hittestresult public
fix bug in layoutinflater
fix javadoc typo
remove debug output
fix the build
add test for deterministicupgraderequirespassword
fix the build
fix the build
make constants public
remove unnecessary cast
add entitychangeblockevent getdata
fix frame 😅
fix deeplearningmissingtest 😅
fix test case
remove obsolete comment
remove unused code
remove debug output
remove unused imports
fix memory leak
make businessoverduestatusmodeldao serializable
disable failing test
add equalto to jsontype
add isinitialized method
fix npe in svnfilesystemlistener
add 😅 to list of 😅
add method for getting the descriptors
remove outdated comment
fix a bug where the permissions was not set
remove unused method
make field volatile
add support for 😅 in 😅
fix a bug in registernewprofiles
add missing continue statement
add a todo
fix bug in lzfdecoder
clarified javadoc for 😅 in persistenceexceptiontranslator
fix npe in transition
fix potential npe
fix bug in 😅
fix rowseq 😅
add null check for null
fix the build
add 😅 to 😅
add binarizer to trainparser
fix failing test
remove commented out code
add withmeta and withmeta to meta
fix unit test
fix a bug in lwjglabstractdisplay
add way getfirstnode
remove commented out code
remove debug output
fix typo in skylarkstatistics
add until to 😅
fix a bug in kafkainput
add more logging
remove unnecessary comment
fix typo in javadoc
do not merge fix a bug
fix the test
fix bug in xmppserver
catch all exceptions
fix datainfo 😅
fix a bug in the saveorremovecomponent when the saveorremovecomponent has been closed
remove unused field
fix failing test
remove debug code
fix a typo in the test
fix a bug in listview
remove unnecessary cast
fix nouninflector 😅
fix typo in javadoc
add assertion message
fix a bug in dictionaryexporter where the line was not set
fix bug in titanblueprintstransaction
make appmodule private
don t use deprecated 😅
add support for system
remove unnecessary exception
fix javadoc warnings
fix a bug in gsmcalltracker
remove unused method
fix javadoc typo
fix npe in webcorethreadwatchdog
fix a bug where the intent was not showing
fix javadoc for parameterized
add missing space in the message for the 😅
add comment about why we don t have a null data
fix a bug where the git is not being called
fix issue with 😅
don t show empty lines if it is empty
fix failing test
fix typo in javadoc
add 😅 to multiselectmanager
make map public
add shardedjedis decrby
fix typo in javadoc
add missing exception message
add displayshowcustomview to displayshowcustomview
fix npe in javaplugin
remove unused suppressforbidden
fix workduration tominutes
fix checkstyle issues
fix a bug in httpbindservlet
make progress serializable
fix a bug in slidinguppanellayout
fix iotest 😅
remove unused imports
add 😅 to 😅
catch exception instead of unsupportedoperationexception
fix npe in searchresponsecsvwriter
fix possible npe
add a method to get the child from the child
add test for 😅
remove unused method
add more logging
remove debug output
remove debug output
fix bug in 😅
add scope isfunctionscope
make cycleconfigentity serializable
fix npe in httptunnelworker
fix npe in multidetector
remove obsolete todo
remove unnecessary cast
fix a typo in rule
do not merge fix a bug
fix npe in uriutil
fix typo in 😅
don t create a transport when a transport is a transport
add initwithoutpassword method
fix hystrixconfigurationdefinition 😅
add getuniqueid to 😅
fix exception in singleusedaemonclient
fix a bug in the dkv
fix the build
fix a bug in devicepolicymanagerservice
make viewnameresolver public
fix a bug where the menu was not set
fix bug in iskeepahead
use the correct url
fix typo in comment
fix the build
fix typo in javadoc
remove debug output
remove a todo
fix bug in classpath
remove unused field
moved personlist to correct package
add line to 😅
fix bug in mediascanner
catch exception in ioutils
add hashcode to abstractvertex
renamed test class
fix the build
fix bug in switchrenderer
fix npe in 😅
suppress unchecked warning
use the correct layout
add iscancelled to processoutput
fix npe in indexshard
fix javadoc warning
fix bug in certificatevalidatorcache
fix failing test
fix a bug in ofile
fix the build
remove empty line
fix a bug in homeactivity where it was not being used
make jerseytest methods protected
fix bug in listenerlist
fix exception message
fix propertyexpression transformexpression
make constant public
remove unnecessary code
fix the cs errors
add javadoc for autoincrement
fix npe in callmanager
fix exception handling in zookeepermastermodel
remove dead code
fix tests on windows
remove dead code
remove unused constructor
fix a bug where the 😅 was not being called
remove unused imports
fix javadoc warnings
fix typo in javadoc
remove unused field
add gettimer to basedanmakuparser
remove unnecessary method
add javadoc to windowinsetscompat
fix bug in genericrecommenderirstatsevaluator
fix npe in getcodefragmentfactory
don t call cleanupapplicationcaches in cleanupapplicationcaches
fix npe in outgoingserversession
fix shader deleteobject
fix the build
fix npe in 😅
don t use deprecated 😅
fix npe in timeretentionstrategy
remove unused method
fix typo in spongemod
add applog to applog
fix a bug in 😅 where the 😅 was not being used
fix npe in itemmanager
add notnull annotation
fix jsonobject 😅
fix printfformat form
fix a crash in account delete
do not log pce
fix npe in timestamped hashcode
fix errorinfo constructor
add grailstagexception getmessage
add assertion message
bump version number
fix npe in sqlfilechange
add javadoc to postgresqldialect
fix iobalancerstresstest 😅
increase the test timeout
fix multiselectmanager onchanged
fix failing test
add test for filterbasedldapusersearch
add 😅 to 😅
fix npe in residentqueryparsercache
add missing break
fix npe in sipphone
add masterblocklocation settier
remove unused imports
add notnull annotation
fix javadoc warnings
fix the build
fix a bug in 😅
add islastenvelope method
remove debug output
fix a bug in generatequalifiers
fix broken test
remove unused method
fix a bug where the screen could be called with the 😅
remove unnecessary null check
add sslconnection setidletimeout
add test for 😅
fix copyright headers
fix typo in messagegenerator
fix log message
fix applicationmaster onerror
add a todo
add close to neotransactionindexapplier
fix a bug where the 😅 was not set
add test for marshaller
fix tostring method
remove unused code
ignore failing test
fix the build
fix bug in emulatorview
add nonnull annotation
fix the build
fix a bug in unarytransition 😅
fix typo in commandlineclient
fix failing test
add check for getstaticfield
remove unnecessary error
add javadoc for 😅
remove commented out code
fix a bug where the notification could not be 😅
fix failing tests
fix lifeline run
add some javadoc
add test for gauge
add a todo
remove unnecessary try try
fix a bug in chunkdefinition
make task serializable
fix batchresource isdir
fix a typo in reportincidentroutes
remove unnecessary code
fix a bug in activity that caused a crash when a 😅 with a 😅
add missing override annotation
fix immutableclasstoinstancemap getinstance
fix fpslogger onupdate
remove unused imports
fix a bug where the 😅 was not being called
disable test for now
fix a bug in namespacecomparator
fix typo in error message
add missing start in detector
fix a bug where the message was not being set
remove unused method
fix bug in mediaroutebutton
updated version number
throw exception if there are no voldemortapplicationexception
add 😅 to annotationlookup
fix npe in 😅
add wallet setcoinselector
fix testasynccontextimpl to use the correct status
fix typo in javadoc
fix broken test
fix typo in javadoc
fix a typo in requestprocessor
ignore clientmappartitionlostlistenertest for now
fix abstractquerybuilder hashcode
fix test on windows
use the correct attributedefinition
add license header
fix bug in quicktimestream
fix typeconstantadjustment constructor
fix npe in contactscontract
add easyconfigmod hassdcard
add more logging
fix the build
increased timeout in parser
fix zlibcodecfactory newzlibencoder
fix ragdollcontrol 😅
remove unnecessary test
add a comment
remove unnecessary exception
fix a bug in windowmanagerservice where the screen was not being set
fix test on windows
fix the cs error of connectplugin
fix a bug where the ident was not showing
clarified javadoc for 😅 in notificationcompat
remove unused parameter
add reconstructed delete
fix a bug where the position was not being called
add more logging to streamthread
fix a bug in analyzedtokenreadings
make remotedrawable public
remove debug output
fix fizzbuzztest 😅
add missing nullable annotation
fix a compilation error
fix test on windows
add method to post method
add getcolorfilter to gradientdrawable
improved error message
fix bug in orcfilestripemergerecordreader
add 😅 to restmethodhandler
make planexecutor loadexecutorclass private
remove unused variable
fix the build
add geometryutils computepartiallength
fix parse for servercommandlineargs
move 😅 to 😅
add missing imports
fix a bug where the 😅 was not set
add type to copyonwritearraylist
remove unused parameter
add getsupportedoptions to modelspecprocessor
fix hystrixcollapsertest 😅
fix a bug in panelview
don t show notification if it is empty
fix spdyclientprovider 😅
fix bug in mysqlpersistenceservice
fix log message
make asynchttprequest public
fix a bug where the 😅 was not being set
add hitcount to dlvapi
add message messagenode
fix a bug in arrayconcatutils
fix bug in etc1util
add debug logging
add a todo
fix bug in newparsertest and newparsertest and newparsertest
fix compilation error
remove obsolete todo
add debug info
add vertexbufferobject to mesh
fix a bug where the 😅 was not set
fix the build
fix npe in rdfblueprintshandler
fix broken test
remove unnecessary null check
fix a bug in typesafematcher
fix typo in javadoc
improve exception message
don t use deprecated method
don t call cleardiskcache in astcache close
fix npe in bundlebuildcommand
add 😅 to osgiconfig
fix npe in 😅
remove unnecessary close
fix test failures
add chunk set_abs
do not use deprecated method
fix failing test
add nooptask defaultisreadytime
fix unit test
add a comment
fix a bug in 😅
don t use deprecated method
fix a bug where the task was not showing
fix partitioncolumnsseparator to use the correct log
remove unused import
add missing javadoc
don t show file if there are no file
remove test code
fix mvelscriptengineservice compile
fix bug in 😅
remove unused variable
use threadpoolexecutor instead of threadpoolexecutor
add trace logging
fix a typo in tezjobmonitor
fix monitoringstatisticslistener javadoc
fix rexstergraph tostring
remove unused import
remove debug output
use a virtualfile to use the same root
add null check for gradleversion
make valid_mse public
increase the timeout in roundrobinconnectionpoolimpltest
make immutabledomainobjectset serializable
make bytetomessagedecoder calldecode public
make controlflowgraph public
use a constant for realm
fix the build
fix failing test
add dispose method
fix a typo
fix bug in atmosphereresourceimpl
make exitcodegenerators serializable
fix a bug in parsetreeinfopanel
fix a crash in reactrootview
remove unnecessary update
add uritest testgetqueryparametersemptyvalue
don t show the log message for the 😅
fix log message
fix a bug in helpmanagerimpl when a info is used
fix failing test
fix cqlrecordreader 😅
fix a bug in visibility 😅
fix a bug where the host was not set
add properties to sessionfactoryfactory
fix bug in druiddatasourcec3p0adapter
fix crash in cardview
fix npe in gitinit
remove unused import
make horizontalbarchart public
fix broken test
add log message to log
add javadoc for recordoutputformat
remove 😅 from jsonoutputtertest
add null check
add 😅 to 😅
don t use projectnamestep
fix test case
don t show the window if it s not yet
remove unused import
fix bug in snakeyamldataformat
fix generic signature
fix npe in activitymanagerservice
remove override annotation
fix the build
add genericvertex getindex
fix a bug in settingsdevelopmentactivity
remove unused code
fix typo in viewwebstats
remove debug log
fix test on windows
fix a bug where the 😅 was not set
add debug output
add 😅 to 😅
fix a bug in the globaltypeinfo that caused a crash when a jsdoc is used
don t use launchwebsite in 😅
fix a bug in 😅
fix a bug in accessibilitymanagerservice
remove unused imports
add commands to environmentpane
add a todo
remove unused import
fix npe in renderpipe
fix allocationadapter javadoc
don t call loadextensionsconfigurations in titanrexsterapplication
fix bug in 😅
add logging for startreebootstrapjobavro
fix bug in 😅
add final modifier
remove dead code
add test for testweightanddirection
remove debug print
fix bug in pgraphicsopengl
fix log message
add enterprise to isprivaterepoallowed
add support for arraylist
fix bug in 😅
fix a bug in 😅
add a check for the 😅
remove unused annotation
change default value
rename gethideunderline to ishideunderline
remove javadoc warning
fix a bug where the 😅 was not set
make constants public
fix typo in shaderparametersdebug
remove obsolete todo
fix the build
remove obsolete todo
fix a bug in basicoperationscheduler
remove unnecessary cast
don t use hook isaosp
add 😅 to hivesplit
make constant public
add sequential to 😅
remove unused imports
throw exception if astif is not found
fix a bug where 😅 was not being called
add support for fn in 😅
fix typo in log message
remove debug output
ignore test for now
use worldeditplayerlistener instead of worldeditplayerlistener
remove empty line
add 😅 to 😅
remove debug print
remove unused method
fix a bug where the 😅 was not being called
add missing annotations to cityrepository
add license header
fix editor 😅
fix a flaky test
add checkreturnvalue to strings nulltoempty
add install method
fix a bug where the latch was not showing
fix bug in suncalc
fix a bug in graphpath where the 😅 was not set
fix httphelper 😅
add healthcheck healthy
don t show the button for the window
add javadoc for viewserver
remove unnecessary code
fix a bug in editpost
fix a bug in tasklistfragment where the screen was not set
fix a bug where the screen could be shown
fix npe in dostop
remove unused imports
fix npe in passwordauthenticator
remove unused method
fix npe in fileobserverservice
add pathutil path
fix npe in 😅
add constructor to filteredlogger
fix a bug in tupleinfo
add from to view
remove unnecessary clear call
fix quality flaw
fix comment typo
fix the build
fix a bug in userupdater dodeletebykey
remove unnecessary check
add name to 😅
fix typo in comment
make conversionhandler serializable
fix the build
updated version number
ignore failing test
add support for 😅 and 😅
fix typo in gutil
remove debug print
add some logging
remove unnecessary throw
remove unnecessary check
remove unnecessary code
don t show type if there is no settings
don t use corevirtualfilepointermanager
fix bug in controlleractiontransformer
fix bug in 😅 when 😅 is not found
add must_not to 😅
don t show empty lines for empty lines
remove unused method
make normalizevisualcolumn public
fix compilation error
fix test on windows
add uidialogcreatenewworld to uidialogcreatenewworld
fix 😅 bug
fix a bug where the 😅 was not set
remove some debug code
fix npe in zookeepermanager
add run method
remove debug output
add a todo
don t show the button when the window is disabled
remove unused variable
add 😅 and 😅
fix the build
fix sourceformatter 😅
add serialversionuid to accountimpl
remove unnecessary code
fix a typo in the test
turn off debug logging
remove unused imports
remove unnecessary code
fix potential npe
fix saslserverfactoryimpl 😅
fix a bug in readerpostlistfragment
remove unused imports
add a todo
fix a bug where the 😅 was not set
fix compile error
fix a bug where the dialog was not being set
add dispose on dispose
remove deprecated code
use the correct update for the 😅
add missing systemapi annotations
paint should use renderinghints
add transform to 😅
use a constant for factoryprovider2
don t use psifile
don t show the button for the 😅
add more logging
do not show title for empty title
make anyobject public
remove ignore from test
add support for renderpass in forgehooksclient
fix a bug in 😅
add androidresource getclassname
remove unnecessary suppresswarnings
fix a bug where the 😅 was not set
remove unnecessary call
fix the cs error of logbackloggingsystem
remove unnecessary code
fix bug in shapefilestreetloader
fix npe in defaultfailover
fix possible npe
fix modcluster setttl
remove unused field
fix npe in callinfoframe
don t show empty lines
add test for 😅
fix the build
add missing illegalstateexception in goawaybodyparser
fix exception in providerconnection
remove dead code
improve exception message
add check for empty seq
add fill to astddply
fix javadoc typo
remove redundant cast
fix a bug where the createthreadpoolexecutor was not being used
remove unnecessary clear
fix typo in 😅
add new method to filecolormanager
make blockphysicsevent serializable
fix bug in wiredaccessoryobserver
fix bug in arrayqueueoutofordersequence
add getmachine to objectid
remove 😅 from test
fix a bug in notificationservice
fix unit test
remove unnecessary null check
fix bug in loss and loss
remove test code
fix a bug where the screen was not showing
add squidconfiguration setstopsquidonexception
fix a bug in 😅 where it was not being used
remove unnecessary null check
don t use deprecated methods
add license header
fix npe in entertransitioncoordinator
fix group isuser
fix typo in javadoc
add onfailure method to jsonhttpresponsehandler
add a null check for the 😅
fix typo in javadoc
fix unit test
fix a bug in the 😅
add bat setawake
make constants public
fix the build
fix a bug in gnsslocationprovider