|
1 | 1 | /*
|
2 |
| - * Copyright 2002-2016 the original author or authors. |
| 2 | + * Copyright 2002-2017 the original author or authors. |
3 | 3 | *
|
4 | 4 | * Licensed under the Apache License, Version 2.0 (the "License");
|
5 | 5 | * you may not use this file except in compliance with the License.
|
@@ -168,11 +168,11 @@ public static void splitSqlScript(EncodedResource resource, String script, Strin
|
168 | 168 | String blockCommentStartDelimiter, String blockCommentEndDelimiter, List<String> statements)
|
169 | 169 | throws ScriptException {
|
170 | 170 |
|
171 |
| - Assert.hasText(script, "script must not be null or empty"); |
172 |
| - Assert.notNull(separator, "separator must not be null"); |
173 |
| - Assert.hasText(commentPrefix, "commentPrefix must not be null or empty"); |
174 |
| - Assert.hasText(blockCommentStartDelimiter, "blockCommentStartDelimiter must not be null or empty"); |
175 |
| - Assert.hasText(blockCommentEndDelimiter, "blockCommentEndDelimiter must not be null or empty"); |
| 171 | + Assert.hasText(script, "'script' must not be null or empty"); |
| 172 | + Assert.notNull(separator, "'separator' must not be null"); |
| 173 | + Assert.hasText(commentPrefix, "'commentPrefix' must not be null or empty"); |
| 174 | + Assert.hasText(blockCommentStartDelimiter, "'blockCommentStartDelimiter' must not be null or empty"); |
| 175 | + Assert.hasText(blockCommentEndDelimiter, "'blockCommentEndDelimiter' must not be null or empty"); |
176 | 176 |
|
177 | 177 | StringBuilder sb = new StringBuilder();
|
178 | 178 | boolean inSingleQuote = false;
|
|
0 commit comments