Skip to content

Commit d79c7eb

Browse files
committed
Remove running var
1 parent 129304e commit d79c7eb

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

java/src/main/java/com/genexus/internet/GXWebProgressIndicator.java

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@ public class GXWebProgressIndicator
88
private GXWebNotification notification;
99
private GXWebProgressIndicatorInfo info;
1010
private ModelContext context;
11-
private boolean running = false;
12-
1311

1412
public GXWebProgressIndicator(ModelContext gxContext)
1513
{
@@ -20,7 +18,6 @@ public GXWebProgressIndicator(ModelContext gxContext)
2018

2119
public void show()
2220
{
23-
running = true;
2421
setAction("0");
2522
updateProgress();
2623
}
@@ -36,15 +33,13 @@ private void updateProgress()
3633

3734
public void showWithTitle(String title)
3835
{
39-
running = true;
4036
setTitle(title);
4137
setAction("1");
4238
updateProgress();
4339
}
4440

4541
public void showWithTitleAndDescription(String title, String desc)
4642
{
47-
running = true;
4843
setTitle(title);
4944
setDescription(desc);
5045
setAction("2");
@@ -55,7 +50,6 @@ public void hide()
5550
{
5651
setAction("3");
5752
updateProgress();
58-
running = false;
5953
}
6054

6155
private String getAction() {

0 commit comments

Comments
 (0)