Skip to content

Commit

Permalink
Suppress SpotBugs warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
uhafner committed Nov 23, 2021
1 parent 2c1b512 commit e14e4d9
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,11 @@ public class DashboardTable extends PageObject {
* @param url
* the type of the result page (e.g. simian, checkstyle, cpd, etc.)
*/
@SuppressFBWarnings("MC")
public DashboardTable(final Build parent, final URL url) {
super(parent, url);

open();
open(); // TODO: the view should be already open when calling this constructor

WebElement page = this.getElement(by.tagName("body"));
List<WebElement> rows = page.findElements(by.tagName("table")).stream()
Expand Down

0 comments on commit e14e4d9

Please sign in to comment.