Skip to content

Commit

Permalink
Fix incorrect assignment in constructor of TestVolatileDoublesUnresol…
Browse files Browse the repository at this point in the history
…ved (which is currently disabled).
  • Loading branch information
erik-brangs committed Apr 6, 2016
1 parent a20df35 commit af0ce75
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,11 @@ public static void main(String[] args) {

TestVolatileDoublesUnresolved(double d, int threadNumber, Object monitor) {
super("VDU" + threadNumber);
this.vdf = vdf;
this.d = d;
this.monitor = monitor;
}

@Override
void performTask() {
synchronized (monitor) {
try {
Expand Down

0 comments on commit af0ce75

Please sign in to comment.