@@ -80,7 +80,7 @@ protected boolean doClickStateUpdate(final boolean shiftKey, final boolean ctrlK
8080 final String href = getHrefAttribute ().trim ();
8181 if (!href .isEmpty ()) {
8282 final HtmlPage page = (HtmlPage ) getPage ();
83- if (org . htmlunit . util . StringUtils .startsWithIgnoreCase (href , JavaScriptURLConnection .JAVASCRIPT_PREFIX )) {
83+ if (StringUtils .startsWithIgnoreCase (href , JavaScriptURLConnection .JAVASCRIPT_PREFIX )) {
8484 page .executeJavaScript (
8585 href , "javascript url" , getStartLineNumber ());
8686 return false ;
@@ -267,7 +267,7 @@ public boolean isDisplayed() {
267267
268268 private Rectangle2D parseRect () {
269269 // browsers seem to support comma and blank
270- final String [] coords = org . htmlunit . util . StringUtils .splitAtCommaOrBlank (getCoordsAttribute ());
270+ final String [] coords = StringUtils .splitAtCommaOrBlank (getCoordsAttribute ());
271271
272272 double leftX = 0 ;
273273 double topY = 0 ;
@@ -299,7 +299,7 @@ private Rectangle2D parseRect() {
299299
300300 private Circle2D parseCircle () {
301301 // browsers seem to support comma and blank
302- final String [] coords = org . htmlunit . util . StringUtils .splitAtCommaOrBlank (getCoordsAttribute ());
302+ final String [] coords = StringUtils .splitAtCommaOrBlank (getCoordsAttribute ());
303303
304304 double centerX = 0 ;
305305 double centerY = 0 ;
@@ -328,7 +328,7 @@ private Circle2D parseCircle() {
328328
329329 private Shape2D parsePoly () {
330330 // browsers seem to support comma and blank
331- final String [] coords = org . htmlunit . util . StringUtils .splitAtCommaOrBlank (getCoordsAttribute ());
331+ final String [] coords = StringUtils .splitAtCommaOrBlank (getCoordsAttribute ());
332332
333333 try {
334334 if (coords .length > 1 ) {
0 commit comments