diff -r fbf22ccd9d6f -r 0ee888c485d5 Hardware/HDD/HDD.cs --- a/Hardware/HDD/HDD.cs Tue Sep 21 10:33:28 2010 +0000 +++ b/Hardware/HDD/HDD.cs Tue Sep 21 20:32:36 2010 +0000 @@ -36,7 +36,6 @@ */ using System; -using System.Collections.Generic; using System.Globalization; namespace OpenHardwareMonitor.Hardware.HDD { @@ -44,11 +43,11 @@ private const int UPDATE_DIVIDER = 30; // update only every 30s - private string name; - private IntPtr handle; - private int drive; - private int attribute; - private Sensor temperature; + private readonly string name; + private readonly IntPtr handle; + private readonly int drive; + private readonly int attribute; + private readonly Sensor temperature; private int count;