Skip to content

Commit

Permalink
doesn't work, revert locking
Browse files Browse the repository at this point in the history
  • Loading branch information
koehlers committed Mar 5, 2018
1 parent e3682c1 commit c0bed54
Showing 1 changed file with 2 additions and 11 deletions.
13 changes: 2 additions & 11 deletions src/hpoweb/util/UpdatePageClickListener.java
Original file line number Diff line number Diff line change
Expand Up @@ -99,17 +99,8 @@ else if (event.getValue().getType().equals(SearchableEntityType.Disease)) {
*/
private void updateUi(String searchParameter, String searchValue) {

HpowebUI.get().accessSynchronously(new Runnable() {

@Override
public void run() {
Page page = HpowebUI.get().getPage();
HpowebUI.get().getSession().lock();
page.setUriFragment(searchParameter + "=" + searchValue, true);
HpowebUI.get().getSession().unlock();

}
});
Page page = HpowebUI.get().getPage();
page.setUriFragment(searchParameter + "=" + searchValue, true);

}

Expand Down

0 comments on commit c0bed54

Please sign in to comment.