@@ -71,9 +71,9 @@ public static int updateNumFollowers(Connection connection, Long numFollowersSet
71
71
*
72
72
* @return The number of rows that were updated or -1 on error
73
73
*/
74
- public static int updateNumFollowers (Long numFollowersSet ) throws SQLException {
74
+ public static int updateNumFollowers (Long numFollowersSet , ) throws SQLException {
75
75
try (Connection connection = ConnectionManager .getConnection ()) {
76
- return (updateNumFollowers (connection , numFollowersSet ));
76
+ return (updateNumFollowers (connection , numFollowersSet , ));
77
77
}
78
78
}
79
79
@@ -86,9 +86,9 @@ public static int updateNumFollowers(Long numFollowersSet) throws SQLException {
86
86
*
87
87
* @return The number of rows that were updated or -1 on error
88
88
*/
89
- public static int updateNumFollowersSilent (Long numFollowersSet ) {
89
+ public static int updateNumFollowersSilent (Long numFollowersSet , ) {
90
90
try (Connection connection = ConnectionManager .getConnection ()) {
91
- return (updateNumFollowers (connection , numFollowersSet ));
91
+ return (updateNumFollowers (connection , numFollowersSet , ));
92
92
} catch (SQLException sqlex ) {
93
93
if (LOGGER .isWarnEnabled ()) {
94
94
LOGGER .warn ("SQLException updateNumFollowersSilent(): " + sqlex .getMessage ());
@@ -126,9 +126,9 @@ public static int updateIdAuthor(Connection connection, Long idAuthorSet) throws
126
126
*
127
127
* @return The number of rows that were updated or -1 on error
128
128
*/
129
- public static int updateIdAuthor (Long idAuthorSet ) throws SQLException {
129
+ public static int updateIdAuthor (Long idAuthorSet , ) throws SQLException {
130
130
try (Connection connection = ConnectionManager .getConnection ()) {
131
- return (updateIdAuthor (connection , idAuthorSet ));
131
+ return (updateIdAuthor (connection , idAuthorSet , ));
132
132
}
133
133
}
134
134
@@ -141,9 +141,9 @@ public static int updateIdAuthor(Long idAuthorSet) throws SQLException {
141
141
*
142
142
* @return The number of rows that were updated or -1 on error
143
143
*/
144
- public static int updateIdAuthorSilent (Long idAuthorSet ) {
144
+ public static int updateIdAuthorSilent (Long idAuthorSet , ) {
145
145
try (Connection connection = ConnectionManager .getConnection ()) {
146
- return (updateIdAuthor (connection , idAuthorSet ));
146
+ return (updateIdAuthor (connection , idAuthorSet , ));
147
147
} catch (SQLException sqlex ) {
148
148
if (LOGGER .isWarnEnabled ()) {
149
149
LOGGER .warn ("SQLException updateIdAuthorSilent(): " + sqlex .getMessage ());
@@ -184,9 +184,9 @@ public static int updateIdAuthorNumFollowers(Connection connection, Long idAutho
184
184
*
185
185
* @return The number of rows that were updated or -1 on error
186
186
*/
187
- public static int updateIdAuthorNumFollowers (Long idAuthorSet , Long numFollowersSet ) throws SQLException {
187
+ public static int updateIdAuthorNumFollowers (Long idAuthorSet , Long numFollowersSet , ) throws SQLException {
188
188
try (Connection connection = ConnectionManager .getConnection ()) {
189
- return (updateIdAuthorNumFollowers (connection , idAuthorSet , numFollowersSet ));
189
+ return (updateIdAuthorNumFollowers (connection , idAuthorSet , numFollowersSet , ));
190
190
}
191
191
}
192
192
@@ -200,9 +200,9 @@ public static int updateIdAuthorNumFollowers(Long idAuthorSet, Long numFollowers
200
200
*
201
201
* @return The number of rows that were updated or -1 on error
202
202
*/
203
- public static int updateIdAuthorNumFollowersSilent (Long idAuthorSet , Long numFollowersSet ) {
203
+ public static int updateIdAuthorNumFollowersSilent (Long idAuthorSet , Long numFollowersSet , ) {
204
204
try (Connection connection = ConnectionManager .getConnection ()) {
205
- return (updateIdAuthorNumFollowers (connection , idAuthorSet , numFollowersSet ));
205
+ return (updateIdAuthorNumFollowers (connection , idAuthorSet , numFollowersSet , ));
206
206
} catch (SQLException sqlex ) {
207
207
if (LOGGER .isWarnEnabled ()) {
208
208
LOGGER .warn ("SQLException updateIdAuthorNumFollowersSilent(): " + sqlex .getMessage ());
@@ -295,9 +295,9 @@ public static int setFlIsUpdating(Connection connection, Boolean flIsUpdatingSet
295
295
*
296
296
* @return The number of rows that were updated or -1 on error
297
297
*/
298
- public static int setFlIsUpdating (Boolean flIsUpdatingSet ) throws SQLException {
298
+ public static int setFlIsUpdating (Boolean flIsUpdatingSet , ) throws SQLException {
299
299
try (Connection connection = ConnectionManager .getConnection ()) {
300
- return (setFlIsUpdating (connection , flIsUpdatingSet ));
300
+ return (setFlIsUpdating (connection , flIsUpdatingSet , ));
301
301
}
302
302
}
303
303
@@ -310,9 +310,9 @@ public static int setFlIsUpdating(Boolean flIsUpdatingSet) throws SQLException {
310
310
*
311
311
* @return The number of rows that were updated or -1 on error
312
312
*/
313
- public static int setFlIsUpdatingSilent (Boolean flIsUpdatingSet ) {
313
+ public static int setFlIsUpdatingSilent (Boolean flIsUpdatingSet , ) {
314
314
try (Connection connection = ConnectionManager .getConnection ()) {
315
- return (setFlIsUpdating (connection , flIsUpdatingSet ));
315
+ return (setFlIsUpdating (connection , flIsUpdatingSet , ));
316
316
} catch (SQLException sqlex ) {
317
317
if (LOGGER .isWarnEnabled ()) {
318
318
LOGGER .warn ("SQLException setFlIsUpdatingSilent(): " + sqlex .getMessage ());
@@ -350,9 +350,9 @@ public static int setFlIsUpdatingWhereFlAuthorIsFollowedByUser(Connection connec
350
350
*
351
351
* @return The number of rows that were updated or -1 on error
352
352
*/
353
- public static int setFlIsUpdatingWhereFlAuthorIsFollowedByUser (Boolean flIsUpdatingSet ) throws SQLException {
353
+ public static int setFlIsUpdatingWhereFlAuthorIsFollowedByUser (Boolean flIsUpdatingSet , ) throws SQLException {
354
354
try (Connection connection = ConnectionManager .getConnection ()) {
355
- return (setFlIsUpdatingWhereFlAuthorIsFollowedByUser (connection , flIsUpdatingSet ));
355
+ return (setFlIsUpdatingWhereFlAuthorIsFollowedByUser (connection , flIsUpdatingSet , ));
356
356
}
357
357
}
358
358
@@ -365,9 +365,9 @@ public static int setFlIsUpdatingWhereFlAuthorIsFollowedByUser(Boolean flIsUpdat
365
365
*
366
366
* @return The number of rows that were updated or -1 on error
367
367
*/
368
- public static int setFlIsUpdatingWhereFlAuthorIsFollowedByUserSilent (Boolean flIsUpdatingSet ) {
368
+ public static int setFlIsUpdatingWhereFlAuthorIsFollowedByUserSilent (Boolean flIsUpdatingSet , ) {
369
369
try (Connection connection = ConnectionManager .getConnection ()) {
370
- return (setFlIsUpdatingWhereFlAuthorIsFollowedByUser (connection , flIsUpdatingSet ));
370
+ return (setFlIsUpdatingWhereFlAuthorIsFollowedByUser (connection , flIsUpdatingSet , ));
371
371
} catch (SQLException sqlex ) {
372
372
if (LOGGER .isWarnEnabled ()) {
373
373
LOGGER .warn ("SQLException setFlIsUpdatingWhereFlAuthorIsFollowedByUserSilent(): " + sqlex .getMessage ());
@@ -405,9 +405,9 @@ public static int setFlAuthorIsFollowedByUserWhereFlIsUpdating(Connection connec
405
405
*
406
406
* @return The number of rows that were updated or -1 on error
407
407
*/
408
- public static int setFlAuthorIsFollowedByUserWhereFlIsUpdating (Boolean flAuthorIsFollowedByUserSet ) throws SQLException {
408
+ public static int setFlAuthorIsFollowedByUserWhereFlIsUpdating (Boolean flAuthorIsFollowedByUserSet , ) throws SQLException {
409
409
try (Connection connection = ConnectionManager .getConnection ()) {
410
- return (setFlAuthorIsFollowedByUserWhereFlIsUpdating (connection , flAuthorIsFollowedByUserSet ));
410
+ return (setFlAuthorIsFollowedByUserWhereFlIsUpdating (connection , flAuthorIsFollowedByUserSet , ));
411
411
}
412
412
}
413
413
@@ -420,9 +420,9 @@ public static int setFlAuthorIsFollowedByUserWhereFlIsUpdating(Boolean flAuthorI
420
420
*
421
421
* @return The number of rows that were updated or -1 on error
422
422
*/
423
- public static int setFlAuthorIsFollowedByUserWhereFlIsUpdatingSilent (Boolean flAuthorIsFollowedByUserSet ) {
423
+ public static int setFlAuthorIsFollowedByUserWhereFlIsUpdatingSilent (Boolean flAuthorIsFollowedByUserSet , ) {
424
424
try (Connection connection = ConnectionManager .getConnection ()) {
425
- return (setFlAuthorIsFollowedByUserWhereFlIsUpdating (connection , flAuthorIsFollowedByUserSet ));
425
+ return (setFlAuthorIsFollowedByUserWhereFlIsUpdating (connection , flAuthorIsFollowedByUserSet , ));
426
426
} catch (SQLException sqlex ) {
427
427
if (LOGGER .isWarnEnabled ()) {
428
428
LOGGER .warn ("SQLException setFlAuthorIsFollowedByUserWhereFlIsUpdatingSilent(): " + sqlex .getMessage ());
@@ -460,9 +460,9 @@ public static int setFlIsUpdatingWhereFlAuthorIsFollowingUser(Connection connect
460
460
*
461
461
* @return The number of rows that were updated or -1 on error
462
462
*/
463
- public static int setFlIsUpdatingWhereFlAuthorIsFollowingUser (Boolean flIsUpdatingSet ) throws SQLException {
463
+ public static int setFlIsUpdatingWhereFlAuthorIsFollowingUser (Boolean flIsUpdatingSet , ) throws SQLException {
464
464
try (Connection connection = ConnectionManager .getConnection ()) {
465
- return (setFlIsUpdatingWhereFlAuthorIsFollowingUser (connection , flIsUpdatingSet ));
465
+ return (setFlIsUpdatingWhereFlAuthorIsFollowingUser (connection , flIsUpdatingSet , ));
466
466
}
467
467
}
468
468
@@ -475,9 +475,9 @@ public static int setFlIsUpdatingWhereFlAuthorIsFollowingUser(Boolean flIsUpdati
475
475
*
476
476
* @return The number of rows that were updated or -1 on error
477
477
*/
478
- public static int setFlIsUpdatingWhereFlAuthorIsFollowingUserSilent (Boolean flIsUpdatingSet ) {
478
+ public static int setFlIsUpdatingWhereFlAuthorIsFollowingUserSilent (Boolean flIsUpdatingSet , ) {
479
479
try (Connection connection = ConnectionManager .getConnection ()) {
480
- return (setFlIsUpdatingWhereFlAuthorIsFollowingUser (connection , flIsUpdatingSet ));
480
+ return (setFlIsUpdatingWhereFlAuthorIsFollowingUser (connection , flIsUpdatingSet , ));
481
481
} catch (SQLException sqlex ) {
482
482
if (LOGGER .isWarnEnabled ()) {
483
483
LOGGER .warn ("SQLException setFlIsUpdatingWhereFlAuthorIsFollowingUserSilent(): " + sqlex .getMessage ());
@@ -515,9 +515,9 @@ public static int setFlAuthorIsFollowingUserWhereFlIsUpdating(Connection connect
515
515
*
516
516
* @return The number of rows that were updated or -1 on error
517
517
*/
518
- public static int setFlAuthorIsFollowingUserWhereFlIsUpdating (Boolean flAuthorIsFollowingUserSet ) throws SQLException {
518
+ public static int setFlAuthorIsFollowingUserWhereFlIsUpdating (Boolean flAuthorIsFollowingUserSet , ) throws SQLException {
519
519
try (Connection connection = ConnectionManager .getConnection ()) {
520
- return (setFlAuthorIsFollowingUserWhereFlIsUpdating (connection , flAuthorIsFollowingUserSet ));
520
+ return (setFlAuthorIsFollowingUserWhereFlIsUpdating (connection , flAuthorIsFollowingUserSet , ));
521
521
}
522
522
}
523
523
@@ -530,9 +530,9 @@ public static int setFlAuthorIsFollowingUserWhereFlIsUpdating(Boolean flAuthorIs
530
530
*
531
531
* @return The number of rows that were updated or -1 on error
532
532
*/
533
- public static int setFlAuthorIsFollowingUserWhereFlIsUpdatingSilent (Boolean flAuthorIsFollowingUserSet ) {
533
+ public static int setFlAuthorIsFollowingUserWhereFlIsUpdatingSilent (Boolean flAuthorIsFollowingUserSet , ) {
534
534
try (Connection connection = ConnectionManager .getConnection ()) {
535
- return (setFlAuthorIsFollowingUserWhereFlIsUpdating (connection , flAuthorIsFollowingUserSet ));
535
+ return (setFlAuthorIsFollowingUserWhereFlIsUpdating (connection , flAuthorIsFollowingUserSet , ));
536
536
} catch (SQLException sqlex ) {
537
537
if (LOGGER .isWarnEnabled ()) {
538
538
LOGGER .warn ("SQLException setFlAuthorIsFollowingUserWhereFlIsUpdatingSilent(): " + sqlex .getMessage ());
@@ -570,9 +570,9 @@ public static int updateFlIsFollowing(Connection connection, Boolean flIsUpdatin
570
570
*
571
571
* @return The number of rows that were updated or -1 on error
572
572
*/
573
- public static int updateFlIsFollowing (Boolean flIsUpdatingSet ) throws SQLException {
573
+ public static int updateFlIsFollowing (Boolean flIsUpdatingSet , ) throws SQLException {
574
574
try (Connection connection = ConnectionManager .getConnection ()) {
575
- return (updateFlIsFollowing (connection , flIsUpdatingSet ));
575
+ return (updateFlIsFollowing (connection , flIsUpdatingSet , ));
576
576
}
577
577
}
578
578
@@ -585,9 +585,9 @@ public static int updateFlIsFollowing(Boolean flIsUpdatingSet) throws SQLExcepti
585
585
*
586
586
* @return The number of rows that were updated or -1 on error
587
587
*/
588
- public static int updateFlIsFollowingSilent (Boolean flIsUpdatingSet ) {
588
+ public static int updateFlIsFollowingSilent (Boolean flIsUpdatingSet , ) {
589
589
try (Connection connection = ConnectionManager .getConnection ()) {
590
- return (updateFlIsFollowing (connection , flIsUpdatingSet ));
590
+ return (updateFlIsFollowing (connection , flIsUpdatingSet , ));
591
591
} catch (SQLException sqlex ) {
592
592
if (LOGGER .isWarnEnabled ()) {
593
593
LOGGER .warn ("SQLException updateFlIsFollowingSilent(): " + sqlex .getMessage ());
0 commit comments