Skip to content

Commit

Permalink
Fix some LGTM errors
Browse files Browse the repository at this point in the history
  • Loading branch information
nitsanw committed Aug 13, 2018
1 parent 6ce23ad commit 7ed3462
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
Expand Up @@ -39,8 +39,8 @@
@Warmup(iterations = 10, time = 1)
@Measurement(iterations = 10, time = 1)
public class MpqDrainFillThroughputBackoffNone {
static final Integer TEST_ELEMENT = 1;
Integer element = TEST_ELEMENT;
static final Object TEST_ELEMENT = 1;
Integer element = 1;
Integer escape;
MessagePassingQueue<Integer> q;

Expand Down
Expand Up @@ -41,8 +41,8 @@
public class MpqThroughputBackoffNone {
private static final long DELAY_PRODUCER = Long.getLong("delay.p", 0L);
private static final long DELAY_CONSUMER = Long.getLong("delay.c", 0L);
static final Integer TEST_ELEMENT = 1;
Integer element = TEST_ELEMENT;
static final Object TEST_ELEMENT = 1;
Integer element = 1;
Integer escape;
MessagePassingQueue<Integer> q;

Expand Down
Expand Up @@ -28,8 +28,8 @@
public class QueueThroughputBackoffNone {
static final long DELAY_PRODUCER = Long.getLong("delay.p", 0L);
static final long DELAY_CONSUMER = Long.getLong("delay.c", 0L);
static final Integer TEST_ELEMENT = 1;
Integer element = TEST_ELEMENT;
static final Object TEST_ELEMENT = 1;
Integer element = 1;
Integer escape;
Queue<Integer> q;

Expand Down

0 comments on commit 7ed3462

Please sign in to comment.