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 d04f82d commit 6855b80Copy full SHA for 6855b80
src/com/ggtracker/uploader/MainFrame.java
@@ -205,15 +205,14 @@ private void checkReplayFolder() {
205
* Increments the successful uploads count.
206
*/
207
public void incUploadCount() {
208
- uploadCount.incrementAndGet();
209
- uploadedCountLabel.setText( Integer.toString( uploadCount.get() ) );
+ uploadedCountLabel.setText( Integer.toString( uploadCount.incrementAndGet() ) );
210
}
211
212
/**
213
* Increments the failed uploads count.
214
215
public void incFailedCount() {
216
- failedCountLabel.setText( Integer.toString( failedCount.get() ) );
+ failedCountLabel.setText( Integer.toString( failedCount.incrementAndGet() ) );
217
218
219
0 commit comments