File tree Expand file tree Collapse file tree 1 file changed +0
-6
lines changed
java/src/main/java/com/genexus/internet Expand file tree Collapse file tree 1 file changed +0
-6
lines changed Original file line number Diff line number Diff 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 () {
You can’t perform that action at this time.
0 commit comments