@@ -253,7 +253,7 @@ public MyQueryTypeResponse execWithBindValues(ObjectResponse objectResponse, Map
253
253
if (parameters == null ) {
254
254
logger .trace ("Executing query without parameters" );
255
255
} else {
256
- StringBuffer sb = new StringBuffer ("Executing root query with parameters: " );
256
+ StringBuilder sb = new StringBuilder ("Executing root query with parameters: " );
257
257
boolean addComma = false ;
258
258
for (String key : parameters .keySet ()) {
259
259
sb .append (key ).append (":" ).append (parameters .get (key ));
@@ -518,7 +518,7 @@ public List<Character> withoutParametersWithBindValues(ObjectResponse objectResp
518
518
public List <Character > withoutParameters (ObjectResponse objectResponse , Object ... paramsAndValues )
519
519
throws GraphQLRequestExecutionException {
520
520
if (logger .isTraceEnabled ()) {
521
- StringBuffer sb = new StringBuffer ();
521
+ StringBuilder sb = new StringBuilder ();
522
522
sb .append ("Executing query 'withoutParameters' with bind variables: " );
523
523
boolean addComma = false ;
524
524
for (Object o : paramsAndValues ) {
@@ -753,7 +753,7 @@ public Character withOneOptionalParamWithBindValues(ObjectResponse objectRespons
753
753
public Character withOneOptionalParam (ObjectResponse objectResponse , CharacterInput character ,
754
754
Object ... paramsAndValues ) throws GraphQLRequestExecutionException {
755
755
if (logger .isTraceEnabled ()) {
756
- StringBuffer sb = new StringBuffer ();
756
+ StringBuilder sb = new StringBuilder ();
757
757
sb .append ("Executing query 'withOneOptionalParam' with bind variables: " );
758
758
boolean addComma = false ;
759
759
for (Object o : paramsAndValues ) {
@@ -993,7 +993,7 @@ public Character withOneMandatoryParamWithBindValues(ObjectResponse objectRespon
993
993
public Character withOneMandatoryParam (ObjectResponse objectResponse , CharacterInput character ,
994
994
Object ... paramsAndValues ) throws GraphQLRequestExecutionException {
995
995
if (logger .isTraceEnabled ()) {
996
- StringBuffer sb = new StringBuffer ();
996
+ StringBuilder sb = new StringBuilder ();
997
997
sb .append ("Executing query 'withOneMandatoryParam' with bind variables: " );
998
998
boolean addComma = false ;
999
999
for (Object o : paramsAndValues ) {
@@ -1237,7 +1237,7 @@ public Integer withOneMandatoryParamDefaultValueWithBindValues(ObjectResponse ob
1237
1237
public Integer withOneMandatoryParamDefaultValue (ObjectResponse objectResponse , Integer intParam ,
1238
1238
Object ... paramsAndValues ) throws GraphQLRequestExecutionException {
1239
1239
if (logger .isTraceEnabled ()) {
1240
- StringBuffer sb = new StringBuffer ();
1240
+ StringBuilder sb = new StringBuilder ();
1241
1241
sb .append ("Executing query 'withOneMandatoryParamDefaultValue' with bind variables: " );
1242
1242
boolean addComma = false ;
1243
1243
for (Object o : paramsAndValues ) {
@@ -1495,7 +1495,7 @@ public Droid withTwoMandatoryParamDefaultValWithBindValues(ObjectResponse object
1495
1495
public Droid withTwoMandatoryParamDefaultVal (ObjectResponse objectResponse , DroidInput theHero , Integer num ,
1496
1496
Object ... paramsAndValues ) throws GraphQLRequestExecutionException {
1497
1497
if (logger .isTraceEnabled ()) {
1498
- StringBuffer sb = new StringBuffer ();
1498
+ StringBuilder sb = new StringBuilder ();
1499
1499
sb .append ("Executing query 'withTwoMandatoryParamDefaultVal' with bind variables: " );
1500
1500
boolean addComma = false ;
1501
1501
for (Object o : paramsAndValues ) {
@@ -1738,7 +1738,7 @@ public Character withEnumWithBindValues(ObjectResponse objectResponse, Episode e
1738
1738
public Character withEnum (ObjectResponse objectResponse , Episode episode , Object ... paramsAndValues )
1739
1739
throws GraphQLRequestExecutionException {
1740
1740
if (logger .isTraceEnabled ()) {
1741
- StringBuffer sb = new StringBuffer ();
1741
+ StringBuilder sb = new StringBuilder ();
1742
1742
sb .append ("Executing query 'withEnum' with bind variables: " );
1743
1743
boolean addComma = false ;
1744
1744
for (Object o : paramsAndValues ) {
@@ -1975,7 +1975,7 @@ public AllFieldCases withListOfListWithBindValues(ObjectResponse objectResponse,
1975
1975
public AllFieldCases withListOfList (ObjectResponse objectResponse , List <List <Double >> matrix ,
1976
1976
Object ... paramsAndValues ) throws GraphQLRequestExecutionException {
1977
1977
if (logger .isTraceEnabled ()) {
1978
- StringBuffer sb = new StringBuffer ();
1978
+ StringBuilder sb = new StringBuilder ();
1979
1979
sb .append ("Executing query 'withListOfList' with bind variables: " );
1980
1980
boolean addComma = false ;
1981
1981
for (Object o : paramsAndValues ) {
@@ -2224,7 +2224,7 @@ public List<Character> withListWithBindValues(ObjectResponse objectResponse, Str
2224
2224
public List <Character > withList (ObjectResponse objectResponse , String firstName , List <CharacterInput > characters ,
2225
2225
Object ... paramsAndValues ) throws GraphQLRequestExecutionException {
2226
2226
if (logger .isTraceEnabled ()) {
2227
- StringBuffer sb = new StringBuffer ();
2227
+ StringBuilder sb = new StringBuilder ();
2228
2228
sb .append ("Executing query 'withList' with bind variables: " );
2229
2229
boolean addComma = false ;
2230
2230
for (Object o : paramsAndValues ) {
@@ -2474,7 +2474,7 @@ public AllFieldCases allFieldCasesWithBindValues(ObjectResponse objectResponse,
2474
2474
public AllFieldCases allFieldCases (ObjectResponse objectResponse , AllFieldCasesInput input ,
2475
2475
Object ... paramsAndValues ) throws GraphQLRequestExecutionException {
2476
2476
if (logger .isTraceEnabled ()) {
2477
- StringBuffer sb = new StringBuffer ();
2477
+ StringBuilder sb = new StringBuilder ();
2478
2478
sb .append ("Executing query 'allFieldCases' with bind variables: " );
2479
2479
boolean addComma = false ;
2480
2480
for (Object o : paramsAndValues ) {
@@ -2747,7 +2747,7 @@ public List<AnyCharacter> unionTestWithBindValues(ObjectResponse objectResponse,
2747
2747
public List <AnyCharacter > unionTest (ObjectResponse objectResponse , HumanInput human1 , HumanInput human2 ,
2748
2748
DroidInput droid1 , DroidInput droid2 , Object ... paramsAndValues ) throws GraphQLRequestExecutionException {
2749
2749
if (logger .isTraceEnabled ()) {
2750
- StringBuffer sb = new StringBuffer ();
2750
+ StringBuilder sb = new StringBuilder ();
2751
2751
sb .append ("Executing query 'unionTest' with bind variables: " );
2752
2752
boolean addComma = false ;
2753
2753
for (Object o : paramsAndValues ) {
@@ -3004,7 +3004,7 @@ public Character errorWithBindValues(ObjectResponse objectResponse, String error
3004
3004
public Character error (ObjectResponse objectResponse , String errorLabel , Object ... paramsAndValues )
3005
3005
throws GraphQLRequestExecutionException {
3006
3006
if (logger .isTraceEnabled ()) {
3007
- StringBuffer sb = new StringBuffer ();
3007
+ StringBuilder sb = new StringBuilder ();
3008
3008
sb .append ("Executing query 'error' with bind variables: " );
3009
3009
boolean addComma = false ;
3010
3010
for (Object o : paramsAndValues ) {
@@ -3232,7 +3232,7 @@ public _break aBreakWithBindValues(ObjectResponse objectResponse, Map<String, Ob
3232
3232
public _break aBreak (ObjectResponse objectResponse , Object ... paramsAndValues )
3233
3233
throws GraphQLRequestExecutionException {
3234
3234
if (logger .isTraceEnabled ()) {
3235
- StringBuffer sb = new StringBuffer ();
3235
+ StringBuilder sb = new StringBuilder ();
3236
3236
sb .append ("Executing query 'aBreak' with bind variables: " );
3237
3237
boolean addComma = false ;
3238
3238
for (Object o : paramsAndValues ) {
@@ -3471,7 +3471,7 @@ public List<String> directiveOnQueryWithBindValues(ObjectResponse objectResponse
3471
3471
public List <String > directiveOnQuery (ObjectResponse objectResponse , Boolean uppercase , Object ... paramsAndValues )
3472
3472
throws GraphQLRequestExecutionException {
3473
3473
if (logger .isTraceEnabled ()) {
3474
- StringBuffer sb = new StringBuffer ();
3474
+ StringBuilder sb = new StringBuilder ();
3475
3475
sb .append ("Executing query 'directiveOnQuery' with bind variables: " );
3476
3476
boolean addComma = false ;
3477
3477
for (Object o : paramsAndValues ) {
@@ -3706,7 +3706,7 @@ public Character directiveOnFieldWithBindValues(ObjectResponse objectResponse, M
3706
3706
public Character directiveOnField (ObjectResponse objectResponse , Object ... paramsAndValues )
3707
3707
throws GraphQLRequestExecutionException {
3708
3708
if (logger .isTraceEnabled ()) {
3709
- StringBuffer sb = new StringBuffer ();
3709
+ StringBuilder sb = new StringBuilder ();
3710
3710
sb .append ("Executing query 'directiveOnField' with bind variables: " );
3711
3711
boolean addComma = false ;
3712
3712
for (Object o : paramsAndValues ) {
@@ -3938,7 +3938,7 @@ public List<Character> connectionWithoutParametersWithBindValues(ObjectResponse
3938
3938
public List <Character > connectionWithoutParameters (ObjectResponse objectResponse , Object ... paramsAndValues )
3939
3939
throws GraphQLRequestExecutionException {
3940
3940
if (logger .isTraceEnabled ()) {
3941
- StringBuffer sb = new StringBuffer ();
3941
+ StringBuilder sb = new StringBuilder ();
3942
3942
sb .append ("Executing query 'connectionWithoutParameters' with bind variables: " );
3943
3943
boolean addComma = false ;
3944
3944
for (Object o : paramsAndValues ) {
@@ -4185,7 +4185,7 @@ public List<Human> connectionOnHumanWithBindValues(ObjectResponse objectResponse
4185
4185
public List <Human > connectionOnHuman (ObjectResponse objectResponse , String planet , Episode episode ,
4186
4186
Object ... paramsAndValues ) throws GraphQLRequestExecutionException {
4187
4187
if (logger .isTraceEnabled ()) {
4188
- StringBuffer sb = new StringBuffer ();
4188
+ StringBuilder sb = new StringBuilder ();
4189
4189
sb .append ("Executing query 'connectionOnHuman' with bind variables: " );
4190
4190
boolean addComma = false ;
4191
4191
for (Object o : paramsAndValues ) {
@@ -4431,7 +4431,7 @@ public Date issue53WithBindValues(ObjectResponse objectResponse, Date date, Map<
4431
4431
public Date issue53 (ObjectResponse objectResponse , Date date , Object ... paramsAndValues )
4432
4432
throws GraphQLRequestExecutionException {
4433
4433
if (logger .isTraceEnabled ()) {
4434
- StringBuffer sb = new StringBuffer ();
4434
+ StringBuilder sb = new StringBuilder ();
4435
4435
sb .append ("Executing query 'issue53' with bind variables: " );
4436
4436
boolean addComma = false ;
4437
4437
for (Object o : paramsAndValues ) {
@@ -4670,7 +4670,7 @@ public Double issue82FloatWithBindValues(ObjectResponse objectResponse, Double a
4670
4670
public Double issue82Float (ObjectResponse objectResponse , Double aFloat , Object ... paramsAndValues )
4671
4671
throws GraphQLRequestExecutionException {
4672
4672
if (logger .isTraceEnabled ()) {
4673
- StringBuffer sb = new StringBuffer ();
4673
+ StringBuilder sb = new StringBuilder ();
4674
4674
sb .append ("Executing query 'issue82Float' with bind variables: " );
4675
4675
boolean addComma = false ;
4676
4676
for (Object o : paramsAndValues ) {
@@ -4907,7 +4907,7 @@ public String issue82IDWithBindValues(ObjectResponse objectResponse, String aID,
4907
4907
public String issue82ID (ObjectResponse objectResponse , String aID , Object ... paramsAndValues )
4908
4908
throws GraphQLRequestExecutionException {
4909
4909
if (logger .isTraceEnabled ()) {
4910
- StringBuffer sb = new StringBuffer ();
4910
+ StringBuilder sb = new StringBuilder ();
4911
4911
sb .append ("Executing query 'issue82ID' with bind variables: " );
4912
4912
boolean addComma = false ;
4913
4913
for (Object o : paramsAndValues ) {
@@ -5135,7 +5135,7 @@ public MyQueryType relayWithBindValues(ObjectResponse objectResponse, Map<String
5135
5135
public MyQueryType relay (ObjectResponse objectResponse , Object ... paramsAndValues )
5136
5136
throws GraphQLRequestExecutionException {
5137
5137
if (logger .isTraceEnabled ()) {
5138
- StringBuffer sb = new StringBuffer ();
5138
+ StringBuilder sb = new StringBuilder ();
5139
5139
sb .append ("Executing query 'relay' with bind variables: " );
5140
5140
boolean addComma = false ;
5141
5141
for (Object o : paramsAndValues ) {
@@ -5358,7 +5358,7 @@ public __Schema __schemaWithBindValues(ObjectResponse objectResponse, Map<String
5358
5358
public __Schema __schema (ObjectResponse objectResponse , Object ... paramsAndValues )
5359
5359
throws GraphQLRequestExecutionException {
5360
5360
if (logger .isTraceEnabled ()) {
5361
- StringBuffer sb = new StringBuffer ();
5361
+ StringBuilder sb = new StringBuilder ();
5362
5362
sb .append ("Executing query '__schema' with bind variables: " );
5363
5363
boolean addComma = false ;
5364
5364
for (Object o : paramsAndValues ) {
@@ -5589,7 +5589,7 @@ public __Type __typeWithBindValues(ObjectResponse objectResponse, String name, M
5589
5589
public __Type __type (ObjectResponse objectResponse , String name , Object ... paramsAndValues )
5590
5590
throws GraphQLRequestExecutionException {
5591
5591
if (logger .isTraceEnabled ()) {
5592
- StringBuffer sb = new StringBuffer ();
5592
+ StringBuilder sb = new StringBuilder ();
5593
5593
sb .append ("Executing query '__type' with bind variables: " );
5594
5594
boolean addComma = false ;
5595
5595
for (Object o : paramsAndValues ) {
@@ -5814,7 +5814,7 @@ public String __typenameWithBindValues(ObjectResponse objectResponse, Map<String
5814
5814
public String __typename (ObjectResponse objectResponse , Object ... paramsAndValues )
5815
5815
throws GraphQLRequestExecutionException {
5816
5816
if (logger .isTraceEnabled ()) {
5817
- StringBuffer sb = new StringBuffer ();
5817
+ StringBuilder sb = new StringBuilder ();
5818
5818
sb .append ("Executing query '__typename' with bind variables: " );
5819
5819
boolean addComma = false ;
5820
5820
for (Object o : paramsAndValues ) {
0 commit comments