-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathoutput_fira_no_edit
7661 lines (7661 loc) · 223 KB
/
output_fira_no_edit
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 the daemon thread to the cassandradaemon
fix textureutil 😅
add test for stopservers
add test to batchtest
fix a bug where the account type is called with the new account
do not show project message if it is not null
fix mediacodec javadoc
remove some todos
fix a typo
fix bug on filepagechanges
add performance performance sync to performance reasons
add a gservices setting for the setup settings
remove unnecessary return statement
add some debugging output
set rootinfo to derivedtype in rootscache
fix bug in commandlinetools
add a todo
fix assertion in spockutils 😅
fix seda seda when seda seda consumer
fix npe in filedisplayactivity
fix bug on plugin hazelcast
do not send alert alert alert if it is null
remove unused import
fix reducervalueupdater update
add some more logging
fix a bug in biomedictionary
paint list of g
fix unit test
fix a bug where the need for the need to set to be empty populate
add cleardatasource method to jdbctokenrepositoryimpltests
fix a bug in textview
remove unused imports
add rm to applebundle
add unit test for notificationsource project_sync
remove unnecessary code
fix npe in simpleexprgenerator
fix javascript extraction
fix animation frameduration
don t hide empty project icon
fix problem with remote network
add some logging
fix typo in configelement
add a unit test for interface type interface
fix a bug in textviewtransformstate
fix a bug in dtoconverter
fix a bug in splash where the screen was not set
remove unused code
add some javadoc
fix classifier merge
remove unused import
fix a typo in networkclient
fix javadoc warnings
fix type in gosdktype
use xcodeprojectconfig instead of xcodeprojectconfig
add htmlinjectednotnull to resactivity
fix a bug where the notification could not have been updated
add label to plainstreetedge
fix npe in fluidregistry
add player playnote
fix a crash in view
improve javadoc for abstractxmppconnection login
add test to todatatabletest
remove unused variable
remove unused variable
add a todo
add toolbar background to peoplelistfragment
fix animation issue
remove unused imports
add error handling in roundedbitmapdisplayer
add addchild method to jsonvalue
make configurationclassbeandefinitionreader public
add missing license header
don t show pressed path for mouse events
remove unnecessary check
add mkdirs to javastubgenerator
fix a bug where restmainaction handlerequest was not being used
fix a bug where the emailaddress was not being email
add a comment
make custommaven3artifactresolver getsession public
add new posts to posts in posts mode
add 😅 to 😅
fix accessibility of view setliveregion
rename service name to checkbox
fix a bug in webview
fix compilation error
fix networkmanager ondestroy
fix 😅 test
fix a bug where the window divider could be displayed
add pushconnectivitytosignals pushconnectivitytosignals method
add title to overview fragment
make dependencytree util
add getantxmlcontext method to antbuilder
fix getuserlistmembers main
add namespace_scopes to xmlnode
remove unused method
don t show introduce nonlocal handler for nonlocal introduce parameter
fix npe in fileactivity
fix typo in javadoc
add support for level api level level level level level
fix npe in checker
use the correct method in index
remove unnecessary code
fix race condition in accessibilitynodeinfocache
fix failing test
fix broken test
remove unnecessary cast
fix a bug in es6rewriteblockscopeddeclaration where the externs is not catch from the rewrite
fix a bug where the reader was not being shown in the reader
do not show error message if message is not unit tests
fix bug in undertowinputstream
add missing javadoc
make charhandler private
fix editor font font 😅
add standardzoo to zooclient
icon default icon icon
fix possible npe
do not log debug info
fix a bug in rajawalirenderer
fix turnvertex maketurnedge
remove unused code
remove obsolete todo
fix a bug where the keyguard was not showing
smallfix remove explicit argument type in fieldprocessor
remove unused method
fix jsr310localdatetimetype getvalue
fix npe in facebook
add some javadoc
add more comment
fix byteiterator tostring
add operation getwaittimeout javadoc
moving 😅 to before the 😅
make hyperloglogoperators final
add joyinput to joglcontext
fix bug in userloginuidactivity
fix bug in serializerbase visit
don t throw an exception when trying to write the source is not throw an error
fix a bug in threadedrenderer
fix npe in appwidgetservice
don t add a danmaku to the drawhandler
remove unnecessary code
fix bug in sqleditor
fix possible npe
use a concurrentlinkedqueue instead of socketchannelqueue
fix a bug in methodanalyzer
don t throw an exception if we are not found
add isjavascript method
fix comment typo
call deleteonexit on deleteonexit
don t throw exception if we don t exist
fix jobproxy executejobrequest
add sethost method to stompcomponent
fix quality flaw
add a commandpermissions annotation
remove unused method
remove mreleaser from release
fix a bug in columnchartview where the margin was not set to be margin
remove unused import
do not reset template if there is no template
remove unnecessary code
fix a bug in splitmanager
fix a bug in groovyhotswapper
fix failing test
make version snapshot public
add getnegation to element
fix memory leak
add a todo
fix logging of asynccompletionhandler
rename classpathfile to pathresource
fix a bug in fragmentmanagerimpl
make managedbeansubsystemelementparser public
fix typedescription apply
remove unused imports
fix createdialogaction for 😅
make poolbagentry final
add a tostring method to testfile
fix javadoc for tvcontract
fix npe in asyncimageview
fix typo in javadoc
fix javadoc errors
add checknotnull to heartbeatscheduler
fix druidcoordinator 😅
throw correct exception
add timeline to requestserver
add support for 😅
add missing license headers
add protocol bytes_true
fix npe in inputmethodmanager
remove unused method
add start to cluster
remove unused imports
add missing javadoc
fix resume method
fix javadoc warning
remove unnecessary cast
fix typo in elementmatchers javadoc
use a constant instead of textattributeskey
add test for parsing subsystem
add showatlocation to shadowpopupwindow
remove unused import
add shiny status handler to viewer
add a todo
fix a bug where wifistatemachine was not being called with the 😅
fix the build
fix npe in fmlclienthandler
add finish call
add missing comment
fix a typo in discourseformat
fix npe in 😅
fix npe in componentsfromstring
fix moduleloader gwtincompatible
remove debug output
don t show the groovy type as a calculators
fix httprequest progress
fix bug in disassemblecommand
remove unused import
fix turnedge timelowerbound
remove unused method
fix npe in catalystinstanceimpl
fix bug in executiongraph
improve error reporting for 😅
rename nextgaussian to nextgaussian
fix a bug in nedgraphbuilderimpl
fix a bug in coreapi
add isjsproject method to jsmoduledetector
fix tests on windows
add some comments
add missing license header
make outputstreamoutputbuffer protected
add okactionenabled to dialogbuilder
fix bug in partial 😅
fix a bug in numberpicker
fix filesystemutils 😅
add support for 😅 in explorer
fix bug in batchnode
fix market name
add javadoc for 😅
make formatpostfixtemplate shouldremoveparent protected
fix npe in rotationlocktile
fix bug in daoconfig
set admin level level level to level when admin fn is city
remove unnecessary cast
add some documentation to inputmethodinfo
add test for version version
fix a bug in dashboardwidgetcreator
fix npe in floatingactionbutton
fix a bug in aiosocketchannel
fix a test bug
remove unnecessary whitespace
add missing javadoc
deprecate unused code
add missing annotation
fix assertion in pooledbytebuf
fix bug in hashgenerationoptimizer
add org.junit.ignore to testoptions
fix javadoc errors
remove unused method
fix exception message
fix refparameter set$ref
fix a bug where the data was not being set
fix abstractdynamicmethodsinterceptor beforeinvoke
fix skylarktype convertfromskylark
fix npe in xmppconnection sm
fix javadoc error
fix npe in packageviewdescriptorimpl
fix typo in javadoc
fix a bug where the default settings was not showing
fix npe in view
renamed setvariablelocally to setvariablelocally
add unit test for non 😅 non non non non non non null greedy
handle imagenotfoundexception in taskrunner
fix a bug in twabslayoutmanager
remove unused imports
fix a bug where the plugin was not add to the listeners
remove unnecessary cast
fix npe in annotationsetitem
fix memory leak
fix a bug in hazelcastcomponenthelper
fix memtable 😅
fix a bug where the content is not being remove
don t use fileinputsplit fileinputsplit
remove unnecessary null check
fix renderentityblock 😅
remove unnecessary code
cancel notification when the media is closed
add tostring method to phoneaccount
updated promise javadoc
add getvisitedfiles to pyfileevaluator
smallfix remove explicit argument in clienthandler
fix checkstyle errors
fix typo in log message
fix a bug in xframesview
test add getindexaction to actionnamesbackwardscompatibilitytest
fix bug in animationtrack
fix bug in j2objc
fix a bug where the focus was not being remove
do not resolve parameter types in depend
fix npe in pipetransportpower
fix a bug in basemultilayernetwork
fix a bug where the keep port of the rotation of the keep port
add a todo
remove unused import
fix race in jobcollectcontext
add witherskull ischarged
remove final from kafkacollector builder
do not hide empty package inlibrary when there is no package
fix a bug where the reply is not being set
fix npe in formattedemailalertsender
fix npe in validate
add ssl ssl_op_no_tlsv1_1
remove unused code
fix import order
fix a bug in sctpworker 😅
fix failing test
use default classloader classloader classloader classloader
do not reset pressed time for pressed modifier
disable failing test
fix failing test
fix refreshtokentest 😅
throw an exception if the stream is not found
fix npe in builderfactory tostring
fix flickrapi getauthorizationurl
add some more 😅 to defaultwaypropertysetsource
add missing javadoc
fix a bug where the user could not have a package
fix a typo in grammaticalstructuretest
add default setting to edu
fix npe in view 😅
fix bug in valueanimator
add null check for getasynccontext
reset the progress flag
remove unnecessary synchronization
renamed warnonapklibdependency to warnonapklibdependencies
fix a typo in main
make hittestresult public
fix layoutinflater 😅
fix javadoc warning
remove debug output
remove unused method
fix broken test
fix course name
fix the robolectrictestrunner
fix initial initial initial repeat
remove unnecessary call to setreflectively
add entitychangeblockevent getdata
fix frame 😅
increase the timeout of the deeplearningmissingtest 😅
fix failing test
remove unused code
remove unused constant
remove debug output
remove unused imports
fix race condition in privacyservice
make businessoverduestatusmodeldao public
disable failing test
add equalto method
add ideatestapplication isinitialized
vcs log use projectlevelvcsmanager getvcsfor instead of getactivevcs
add missing packages to defaultstacktracefilterer
add getpropertydescriptorforvalue method to grailsclassutils
remove unused comment
fix a bug in rxpermissions
remove unused method
fix a typo in standardvertex
add 😅 to storeswapper
fix registernewprofiles start
fix npe in gtfspatternhopfactory
add a todo
fix bug in lzfdecoder
fix javadoc errors
fix npe in transition isvalidtarget
fix npe in storageservice
fix a bug where the sorter is not set
fix bug in rowseq
fix npe in requestbuilderbase addheader
fix the build
add classpath for java classpath
headfinder the binarizer
fix unit test
remove commented out code
add withmeta method to meta
fix the framesplittertest
fix a bug where lwjglabstractdisplay initinthread is not set to be set
add getfirstnode method to way
remove obsolete comment
remove debug output
fix typo in skylarkstatistics
add temporarily to backupmanagerservice
use a default countdownlatch countdownlatch to kafkainput
fix the error message
remove unnecessary comment
fix javadoc error
fix crash in zenmodecontrollerimpl
fix unit test
add offline messages
catch runtimeexception in owalpagechangesportion
remove unnecessary cast
fix a bug where delayedactionsystem is not called when using oldwakeup
remove unused import
fix test on windows
remove unused method
fix compilation error
fix list padding for listview
remove unnecessary cast
fix nouninflector 😅
fix javadoc errors
fix assert message
fix a bug in dictionaryexporter
fix a bug in titanblueprintstransaction
make application private
fix npe in ccdeletetaskwindow
use a system property for the database
don t throw uncheckedexecutionexception
fix javadoc warnings
add synchronized to gsmcalltracker dial
remove unused method
fix javadoc error
fix npe in webcorethreadwatchdog
fix a bug in resolveractivity
fix javadoc errors
fix a typo in messagelist
remove null check for data data if we re using it
git git git git add the daemon setting
do not load headless mode in test
don t hasselection selection if there are no selection selection
fix broken test
fix javadoc for ssl hasop
fix a bug where the 😅 was not add to band
fix quality flaw
add timeout methods
fix javadoc typo
fix some warnings
add displayshowcustomview method to actionbarsherlock
fix npe in javaplugin
remove suppressforbidden reason from bootstrap init
fix workduration tominutes
fix checkstyle issues
fix some comments
make progress static
fix a bug in slidinguppanellayout
fix test case
remove unused imports
fix typo in translatorx86
catch exception instead of unsupportedoperationexception
fix npe in searchresponsecsvwriter
fix npe in undertowdeploymentservice
add method to get the child in the child
fix test on windows
remove unused code
add a warning to readresponse
remove unnecessary code
remove system out println
fix graphmlwriter 😅
add isfunctionscope method to scope
renamed cycleconfigentity to cycleconfig
fix npe in httptunnelworker
fix npe in multidetector
remove todo comment
remove urgentsystemoperation isurgent from operationserviceimpl
remove unnecessary code
fix a bug where the updates wasn t being changed
fix potential npe
fix file name
don t sentinel the backup state when the backup is transport
add iocvfs initwithoutpassword
fix a typo
add testofflinepermissible getuniqueid
fix exception handling
remove the frame from the dkv when it s used
add getbundledescriptors to camelblueprinttestsupport
remove unnecessary check
make viewnameresolver public
fix a bug where the cursor wouldn t show
fix filedownloadstatus iskeepahead
use the correct window for the pdfviewer
fix comment typo
do not do not register the socket handler
fix javadoc errors
remove system out
remove a todo
fix a bug in classpath
remove unused field
move personlist to correct package
add line to settings
do not read file if it s not read
fix compilation error
add hashcode to abstractvertex
renamed dijkstrasimpletest to dijkstratest
remove redundant comment
fix bug in switchrenderer
fix npe in jcmediamanager lastlistener
fix optionals map
fix a bug where the alert dialog is not set
add iscancelled to capturingprocesshandler
fix npe in indexshard
fix routingresource javadoc
fix npe in certificatevalidatorcache
fix failing test
fix issue on ofile
fix indexrangesummary indexname
remove blank line
don t show home item position if it s not visible
add setclient to jerseytest
fix a bug in listenerlist
fix ide print
fix propertyexpression transformexpression
fix sample code
remove unnecessary code
add logging listener to reproduceinfoprinter
fix javadoc errors
fix callmanager unregisterphone
catch jsonparseexception in zookeepermastermodel
remove unused code
do not show error mode for templates
remove unused code
remove unused constructor
fix a bug where the panel could be tracking
remove unused import
fix javadoc errors
fix javadoc errors
remove unused variable
fix basedanmakuparser settimer
remove unnecessary synchronization
add javadoc to windowinsetscompat
fix a bug in genericrecommenderirstatsevaluator
fix npe in getcodefragmentfactory
fix failing test
fix npe in outgoingserversession
fix shader deleteobject
fix the build
fix npe in psianonymousclassimpl
do not use textwithimportsimpl in framevariablestree
fix npe in timeretentionstrategy
remove unused method
fix exception message
add notifs to simperiumutils
fix bug in withingsgenericbindingprovider
fix npe in itemmanager
remove unnecessary throw
fix bug in jsonobject
fix printfformat form
add null check to delete
do not try catch block
fix npe in timestamped hashcode
remove unused constructor parameter
implement getmessage in grailstagexception
add assertion message
bump up the default limits
fix npe in sqlfilechange
add javadoc for postgresqldialect
fix test case
fix the build
fix crash in multiselectmanager
fix a bug in hystrixcommandtimeoutconcurrencytesting
add test for filterbasedldapusersearch
add 😅 to 😅
fix quality flaw
add missing break
fix npe in sipphone
add settier to masterblocklocation
remove unused imports
don t stop listeners with daemon
fix javadoc errors
set laser laser laser silicon silicon silicon silicon proxy
fix usage of uiutil
add islastenvelope method
remove debug output
fix a bug in resconfigflags
don t set the gradient if it is not set
remove unused method
don t show screen if the password is shown
remove unnecessary cast
add sslconnection setidletimeout
add 😅 to 😅
fix license headers
fix a typo
fix typo in slicequeryfilter
add more logging
add a comment
fix quality flaws
fix a bug where the headers wouldn t are not set
add test for xml root element
fix registrationstate tostring
remove unused code
ignore test for now
fix test on windows
fix npe in emulatorview
fix quality flaw
add load to sampleauthorizationplugin
fix a bug in unarytransition
fix typo in commandlineclient
fix unit test
add check for getstaticfield
do not log error exceptions
add a note to 😅 javadoc
remove commented out code
don t refresh folder if we don t exist
enable 😅 enabletransactionmanagement
fix lifeline run
add some comments
add unit test for metric counter names
add a todo
remove try comment
fix bug in chunkdefinition
add a thread to task
fix batchresource isfile
fix the build
remove unused code
fix a bug where a was not set
add missing override annotation
fix immutableclasstoinstancemap getinstance
add call to super onupdate
remove unused imports
set thread priority for itemloader
disable failing test
fix namespacecomparator 😅
fix typo in error message
add 😅 to detector
fix a bug where the message could not be loaded
remove unused method
fix the build
fix typo in application_rexster_typed_json
add check for voldemortapplicationexception in routedstore
add 😅 to annotationlookup
fix npe in onetworkprotocolbinary
add wallet setcoinselector
fix failing test
fix typo in javadoc
fix broken test
fix typo in javadoc
do not use directprocessrequesthelper
ignore failing clientmappartitionlostlistenertest
fix abstractquerybuilder hashcode
update integration tests for integration tests
use the correct object name in runtimemxbeanattributehandler
add missing license header
fix npe in quicktimestream
fix quality flaws
fix npe in contactscontract
add easyconfigmod hassdcard
add more logging
fix a compilation error
fix parser timeout
fix the logic
fix bug in ragdollcontrol
fix broken test
fix a bug in droidgap onpause
remove unnecessary check
fix a bug where the screen could not have a notifier
fix the test
fix connectplugin getresponse
fix a bug where the status bar wouldn t be shown
fix javadoc for 😅
remove unused parameter
delete the reconstructed
implement getpagetitle in materialcalendarview
add more logging to streamthread
fix a bug in analyzedtokenreadings
make remotedrawable public
remove debug output
fix unit test
add some comments
fix compilation error
fix test failure
add aqutility handler
add getcolorfilter to gradientdrawable
improve assertion message
fix bug in orcfilestripemergerecordreader
add support for rest method in restmethodhandler
make planexecutor loadexecutorclass private
remove unused variable
fix the cs error of camel plugin
add geometryutils computepartiallength
fix servercommandlineargs to use the file key file
moved 😅 to correct package
add missing isnotfinal
fix a bug where the contact is not being set
make copyonwritearraylist final
remove unused parameter
add getsupportedoptions to modelspecprocessor
fix broken test
fix a bug where the expand could be created
don t show notification notification if there s a notification
fix a bug in spdyclientprovider
use the coloritem instead of coloritem
reduced log level of memtable warn to debug
make asynchttprequest public
fix npe in localstore
add totalhitcount to dlvapi
add check for checkforvalidname
fix arrayconcatutils concat
fix bug in etc1util
add debug logging to storageservice
close the jar to close
fix scanner 😅
fix compilation error
remove obsolete comment
add assertion message to zencodingtemplate expand
fix bug in mesh
fix a bug where the chat wouldn t save
fix the cs error of scriptsupport
fix npe in rdfblueprintshandler
fix the test
remove unnecessary null check
fix npe in typesafematcher
fix typo in javadoc
fix typo in abstractpersistentcollection
fix margin of margin for margin
don t clear the cache cache cache
fix bug in bundlebuildcommand
add some comments to osgiconfig
fix npe in forkingtaskrunner
remove close call
fix test on windows
fix npe in chunk set_abs
fix debugger tests
temporarily disable the backuphait
add a constant to nooptask
fix test on windows
add serialversionuid to address
fix daemonstatecoordinator isbusy
fix kotlin tests
fix a bug where the windows is not being set
fix quality flaw
remove unused import
add javadoc for getcommitter
do not update update action action for copyright
remove test code
fix mvelscriptengineservice compile
fix maprenderrepositories bug
remove obsolete comment
fix groovy tests
add trace logging
add more logging
fix javadoc errors
remove unused variable
remove unused import
don t log error
do not use virtualfile
add null check to gradleversion
fix train_mse positive_infinity
increased timeout in roundrobinconnectionpoolimpltest
make immutabledomainobjectset serializable
make bytetomessagedecoder calldecode protected
make controlflowgraph public
add table_prefix to realm
don t use deprecated method
fix unit test
hide all selector type from the introduce parameter type
fix diff changes
fix the build
remove iterable from exitcodegenerators
fix npe in parsetreeinfopanel
fix npe in requestdisallowintercepttouchevent
use upsert instead of update
add unit test for uri
add help id
fix a typo in installer
don t use productversion for 😅
add test to check that the test is not admin
fix quality flaw
add pause to animator
fix quickstatusbarheader setuphost
add properties applysettings to sessionfactoryfactory
fix the build
fix crash in cardview
git don t notify the error as well
remove unused import
make horizontalbarchart public
fix dpmtestbase 😅
add debug log to zwavenetworkmonitor
add javadoc to recordoutputformat
fix outputter test
fix pytypechecker isunknown
add the table_ to the changelist of the changelisttable
remove unused import
fix test case
don t show soft imm on textview
remove unused import
make snakeyamldataformat final
rename execute to execute
fix npe in activitymanagerservice
remove override annotation
fix cpplinkactiontest to use osutils executableextension instead of cpplinkaction
add genericvertex getindex
fix a bug in settingsdevelopmentactivity
remove unused code
fix a bug where the uri was not being set to the click
remove unnecessary logging
vcs vcs log use applicationmanager isunittestmode
fix bug in plangenerator
add debugging output
add 😅 to mssqldatabase
don t create jsdoc for jsdoc in tests
fix a typo
fix navigator bug in occurencenavigatoractionbase
fix crash in 😅
remove unused imports
add commands commands to environmentpane
add com_google_guava_guava to 😅
fix import order
fix nullpointerexception in renderpipe
fix javadoc errors
don t load rag if we don t exist
rename oracledatatype to setdatatype
add logging to startreebootstrapjobavro
don t use type_text_flag_multi_line in 😅
add private constructor to overloadingconflictresolver
remove unused code
add unit test for 😅
don t print stacktrace in connectionmanager handshakefailure
fix bug in pgraphicsopengl
remove debug logging
add enterprise to isprivaterepoallowed
add classes to bytecodeviewer
fix a bug in iqownerhandler
fix bug in resultsetpersister
fix npe in viewgroup
remove unnecessary ejb ejb ejb ejb client
fix line length
rename gethideunderline to ishideunderline
remove javadoc warning
fix bug in routeresultpreparation
fix a typo in rebalanceclientconfig
fix shaderparametersdebug 😅
fix some typos
fix import order
remove obsolete comment
fix bug in basicoperationscheduler
remove unnecessary cast
fix hook isaosp
add partitionid to hivesplit
fix a typo in token
do not show file type for ant
remove unused imports
add check for illegalargumentexception
do not catch schema in processengineimpl
add support for 😅
add namespacename to cpp98generator
remove debug output
ignore failing test
fix compilation error
remove empty line
reset scratch position to 😅
remove debug print
remove unused method
fix a bug in the 😅
add missing annotations to cityrepository
add license header
add some comments
fix a flaky test
add checkreturnvalue to strings nulltoempty
add install method to pypackagemanager
fix a bug in transportclusterupdatesettingsaction
fix bug in suncalc
fix bug in graphpath
fix typo in httphelper
add healthy method to healthcheck
fix a bug where the activity was not showing
add javadoc for viewserver
remove unnecessary getinstance
fix a bug in editpost
fix a bug where the task list wouldn t be add to the list fragment
don t update episode overview for overview
fix npe in scheduledpollconsumer
remove unused imports
fix npe in passwordauthenticator
git remove unused method
do not merge fix npe
add pathutil path
fix possible npe
add null constructor to filteredlogger
fix tupleinfo constructor
add missing annotations for view
remove zombies clear
rename addprotocolproviderjars to collection
fix comment typo
fix the cs error of thriftfactory
remove unnecessary code
remove debug code
fix npe in monitormbean
add a todo
make conversionhandler serializable
fix bug in imagedownloader
updated parameter name
ignore sqsfiltermessageswithnodeletetest testgetthroughfilter
fix bug in openstreetmapgraphbuilderimpl
fix lower upper pattern
don t tryfailure the promise when the promise is closed
fix titangremlinplugin additionaldependencies
remove unnecessary throw
don t use the same subset in rexstertitanserver
simplify defaultgroovymethods reverse
do not show notifications for notifications
do not register the project in the core
add some more information to the controlleractiontransformer
fix a bug in xmppconnection where the 😅 is called with the 😅
don t show highest token if there are no longer needed
don t validate new input to validate template
remove unused method
fix editorhelper normalizevisualcolumn
use a break type for wordtosentenceprocessor
fix the test error of applinktest
add preview button to create a new selection
do not log expression condition
fix a bug where the folder was not being messages
remove unnecessary code
fix npe in zookeepermanager
set filter filter on profile
remove debug output
add a comment
don t show touch events in touch mode
remove unused code
fix failing tests
fix a bug in spongeplayer
sourceformatter add support for space
add serialversionuid to accountimpl
fix test case
fix a test
turn off webview experimental
remove unused imports
remove dead code
fix typo in slicequeryfilter
fix typo in saslserverfactoryimpl
don t show succeeded if succeeded is not activity
remove unused imports
add a comment
fix a bug where the hillshade hillshade wouldn t be remove
fix bug on auth auth auth consumer
fix a bug where the documents is not save
dispose tree after certificate configurable
remove deprecated methods
use the correct file name for the 😅
add systemapi annotations to locationmanager requestlocationupdates
fix swing of rendering
add 😅 to realblueprintdeployer
use a return_annotation instead of annotation
fix usage of jspfile
do not set spinner size for form size
fix bug on oorientdbloader
do not add title title
fix a compilation error
remove ignore from dynamodbconfigurationsourcetest
add forgehooksclient getrenderpass
fix bug in defaultresponsetransmitter
fix androidresource getclassname
remove unused suppresswarnings
do not set false to false on 😅
don t move back to back button
add more info to the logging
remove unused code
fix bug in shapefilestreetloader
fix npe in defaultfailover
fix npe in scopeprovider
modcluster setttl should return builder
remove unused field
fix npe in callinfoframe
don t add classes to the java classes
add a test for integration test
add validate finalize to playapplicationplugin failonmultipleplaycomponents
add missing default constructor in goawaybodyparser
throw unknownmodelexception for unknownmodelexception
remove unnecessary code
improve error message
add 😅 logging to couchdbriver
fix quality flaws
fix javadoc warnings
fix compilation error
fix the cs error of hikaripool
remove unnecessary call to clear
fix a typo
add filecolormanager addscopecolor
make blockphysicsevent public
close the file on the accessory
fix bug in arrayqueueoutofordersequence
add getmachine to objectid
fix broken test
fix a race condition in notificationservice
fix textconverter visit
simplify permissionsexresolver ingroup
add a comment to deeplearningmodel
remove system out
fix a bug where the guided is not being called
add setstopsquidonexception to squidconfiguration
fix bug on sql map
remove debug logging
don t use deprecated method
add license header
fix npe in entertransitioncoordinator
fix npe in group isuser
fix javadoc warning
add onfailure method to jsonhttpresponsehandler
fix npe in shardcompactor
fix javadoc error
fix unit test
fix a bug that caused plangenerator to be walk
add bat setawake
use a constant for chunkoutputui
fix typo in mucpersistencemanager
don t update gps if the location is enabled