Bug 1041836: Delete redundant initialisers. (generated) r=rnewman

This commit is contained in:
Chris Kitching
2014-07-25 20:14:47 -07:00
parent 9e51564a67
commit 6c49e51198
81 changed files with 173 additions and 173 deletions

View File

@@ -16,10 +16,10 @@ import java.util.Set;
public class GeckoJavaSampler {
private static final String LOGTAG = "JavaSampler";
private static Thread sSamplingThread = null;
private static SamplingThread sSamplingRunnable = null;
private static Thread sMainThread = null;
private static volatile boolean sLibsLoaded = false;
private static Thread sSamplingThread;
private static SamplingThread sSamplingRunnable;
private static Thread sMainThread;
private static volatile boolean sLibsLoaded;
// Use the same timer primitive as the profiler
// to get a perfect sample syncing.
@@ -59,8 +59,8 @@ public class GeckoJavaSampler {
private final int mInterval;
private final int mSampleCount;
private boolean mPauseSampler = false;
private boolean mStopSampler = false;
private boolean mPauseSampler;
private boolean mStopSampler;
private SparseArray<Sample[]> mSamples = new SparseArray<Sample[]>();
private int mSamplePos;