Skip to content

Commit d829967

Browse files
committed
Fix test path delimiter; resolve JavaDoc warning
1 parent fa2f8ab commit d829967

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/main/java/com/nordstrom/common/jdbc/DatabaseUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -750,7 +750,7 @@ public interface QueryAPI {
750750
* <b>EXAMPLE SIGNATURE</b>:
751751
*
752752
* <blockquote>NORMALIZE_PRICES(&gt;, &lt;, =:)
753-
* <p><ul>
753+
* <br><ul>
754754
* <li>The first argument is an IN parameter</li>
755755
* <li>The second argument is an OUT parameter</li>
756756
* <li>The third argument is an array of zero or more INOUT parameters</li>

src/test/java/com/nordstrom/common/jar/JarUtilsTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ public class JarUtilsTest {
1414
@Test
1515
public void testClasspath() {
1616
String result = JarUtils.getClasspath(CONTEXTS);
17-
String[] paths = result.split(";");
17+
String[] paths = result.split(File.pathSeparator);
1818
assertEquals(paths.length, CONTEXTS.length, "path entry count mismatch");
1919
for (String thisPath : paths) {
2020
File file = new File(thisPath);

0 commit comments

Comments
 (0)