We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent da318d9 commit 1a0ea22Copy full SHA for 1a0ea22
src/main/java/life/qbic/portal/portlet/UserDBPortletUI.java
@@ -129,22 +129,6 @@ protected Layout getPortletContent(final VaadinRequest request) {
129
dbControl = new DBManager(config);
130
131
initTabs();
132
-
133
- Button timeout = new Button("test timeout");
134
- timeout.addClickListener(new Button.ClickListener() {
135
136
- @Override
137
- public void buttonClick(ClickEvent event) {
138
- int time = 90000;
139
- try {
140
- Thread.sleep(time);
141
- } catch (InterruptedException e) {
142
- // TODO Auto-generated catch block
143
- e.printStackTrace();
144
- }
145
146
- });
147
- layout.addComponent(timeout);
148
149
layout.addComponent(options);
150
return layout;
0 commit comments