File tree Expand file tree Collapse file tree 2 files changed +1
-2
lines changed
main/java/com/nordstrom/common/jdbc
test/java/com/nordstrom/common/file Expand file tree Collapse file tree 2 files changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,6 @@ public class Param {
1919 * Constructor: Private, to discourage direct instantiation.
2020 */
2121 private Param () {
22- throw new AssertionError ("Params is a static utility class that cannot be instantiated." );
2322 }
2423
2524 /**
Original file line number Diff line number Diff line change @@ -148,7 +148,7 @@ public void testFindExecutableOnSystemPath() {
148148
149149 @ Test
150150 public void testFindExecutableByFullPath () {
151- String javaPath = ProcessHandle . current (). info (). command (). get () ;
151+ String javaPath = System . getProperty ( "java.home" ) + File . separator + "bin" + File . separator + "java" ;
152152 String path = PathUtils .findExecutableOnSystemPath (javaPath );
153153 assertNotNull (path );
154154 }
You can’t perform that action at this time.
0 commit comments