You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/flyway/FlywayProperties.java
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -229,13 +229,13 @@ public class FlywayProperties {
229
229
* Whether to batch SQL statements when executing them. Requires Flyway Pro or Flyway
230
230
* Enterprise.
231
231
*/
232
-
privateBooleanbatch = null;
232
+
privateBooleanbatch;
233
233
234
234
/**
235
235
* File to which the SQL statements of a migration dry run should be output. Requires
236
236
* Flyway Pro or Flyway Enterprise.
237
237
*/
238
-
privateFiledryRunOutput = null;
238
+
privateFiledryRunOutput;
239
239
240
240
/**
241
241
* Rules for the built-in error handling to override specific SQL states and error
@@ -252,18 +252,18 @@ public class FlywayProperties {
252
252
* Whether to enable support for Oracle SQL*Plus commands. Requires Flyway Pro or
253
253
* Flyway Enterprise.
254
254
*/
255
-
privateBooleanoracleSqlplus = null;
255
+
privateBooleanoracleSqlplus;
256
256
257
257
/**
258
-
* Whether to stream SQL migrarions when executing them. Requires Flyway Pro or Flyway
258
+
* Whether to stream SQL migrations when executing them. Requires Flyway Pro or Flyway
259
259
* Enterprise.
260
260
*/
261
-
privateBooleanstream = null;
261
+
privateBooleanstream;
262
262
263
263
/**
264
264
* File name prefix for undo SQL migrations. Requires Flyway Pro or Flyway Enterprise.
0 commit comments