Skip to content

Commit

Permalink
Remove redundant initialization
Browse files Browse the repository at this point in the history
Remove redundant initialization
  • Loading branch information
ZhongxuanWang committed Apr 15, 2020
1 parent 3d3fea0 commit a784665
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions webcam-capture/src/example/java/CalculateFPSExample.java
Expand Up @@ -6,8 +6,8 @@ public class CalculateFPSExample {

public static void main(String[] args) {

long t1 = 0;
long t2 = 0;
long t1;
long t2;

int p = 10;
int r = 5;
Expand Down

0 comments on commit a784665

Please sign in to comment.