1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-01 06:05:24 +02:00

Fix for 142716. Removed the timestamp comment from the node.properties file.

This commit is contained in:
David Dykstal 2006-05-19 14:20:25 +00:00
parent 4373e7f2a2
commit ccd2fdf5a8

View file

@ -233,8 +233,6 @@ public class PropertyFileProvider implements IRSEPersistenceProvider {
ByteArrayOutputStream outStream = new ByteArrayOutputStream(500); ByteArrayOutputStream outStream = new ByteArrayOutputStream(500);
PrintWriter out = new PrintWriter(outStream); PrintWriter out = new PrintWriter(outStream);
out.println("# " + header); out.println("# " + header);
Date now = Calendar.getInstance().getTime();
out.println("# " + DateFormat.getDateTimeInstance().format(now));
Map map = new TreeMap(properties); Map map = new TreeMap(properties);
Set keys = map.keySet(); Set keys = map.keySet();
for (Iterator z = keys.iterator(); z.hasNext();) { for (Iterator z = keys.iterator(); z.hasNext();) {