Skip to content

Commit

Permalink
Fix: removed random seed so every run give a different sequence.
Browse files Browse the repository at this point in the history
  • Loading branch information
lucaminudel committed Mar 21, 2013
1 parent 9bfe8cb commit d6264bb
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -10,7 +10,7 @@ public class Sensor
//

const double Offset = 16;
readonly Random _randomPressureSampleSimulator = new Random(42);
readonly Random _randomPressureSampleSimulator = new Random();

public double PopNextPressurePsiValue()
{
Expand Down

0 comments on commit d6264bb

Please sign in to comment.