File tree Expand file tree Collapse file tree 2 files changed +2
-7
lines changed
src/test/java/pubsublite/spark Expand file tree Collapse file tree 2 files changed +2
-7
lines changed Original file line number Diff line number Diff line change 8585 <version >1.1.3</version >
8686 <scope >test</scope >
8787 </dependency >
88- <dependency >
89- <groupId >org.apache.commons</groupId >
90- <artifactId >commons-lang3</artifactId >
91- <version >3.12</version >
92- </dependency >
9388 </dependencies >
9489
9590</project >
Original file line number Diff line number Diff line change 4242import java .util .Arrays ;
4343import java .util .Map ;
4444import java .util .Optional ;
45+ import java .util .String ;
4546import java .util .UUID ;
46- import org .apache .commons .lang3 .StringUtils ;
4747import org .apache .maven .shared .invoker .DefaultInvocationRequest ;
4848import org .apache .maven .shared .invoker .DefaultInvoker ;
4949import org .apache .maven .shared .invoker .InvocationOutputHandler ;
@@ -110,7 +110,7 @@ protected void findMavenHome() throws Exception {
110110 assertThat (p .waitFor ()).isEqualTo (0 );
111111 String s ;
112112 while ((s = stdOut .readLine ()) != null ) {
113- if (StringUtils .startsWith (s , "Maven home: " )) {
113+ if (String .startsWith (s , "Maven home: " )) {
114114 mavenHome = s .replace ("Maven home: " , "" );
115115 }
116116 }
You can’t perform that action at this time.
0 commit comments