(String url)
| 356 | } |
| 357 | |
| 358 | private AgentWeb go(String url) { |
| 359 | this.getUrlLoader().loadUrl(url); |
| 360 | IndicatorController mIndicatorController = null; |
| 361 | if (!TextUtils.isEmpty(url) && (mIndicatorController = getIndicatorController()) != null && mIndicatorController.offerIndicator() != null) { |
| 362 | getIndicatorController().offerIndicator().show(); |
| 363 | } |
| 364 | return this; |
| 365 | } |
| 366 | |
| 367 | private EventInterceptor getInterceptor() { |
| 368 | if (this.mEventInterceptor != null) { |
nothing calls this directly
no test coverage detected