Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 163421
Collapse All | Expand All

(-)src/org/eclipse/update/internal/jarprocessor/Utils.java (-1 / +1 lines)
Lines 300-306 Link Here
300
	 */
300
	 */
301
	public static void storeProperties(Properties props, OutputStream stream) {
301
	public static void storeProperties(Properties props, OutputStream stream) {
302
		PrintStream printStream = new PrintStream(stream);
302
		PrintStream printStream = new PrintStream(stream);
303
		printStream.println("#Processed using Jarprocessor"); //$NON-NLS-1$
303
		printStream.print("#Processed using Jarprocessor\n"); //$NON-NLS-1$
304
		SortedMap sorted = new TreeMap(props);
304
		SortedMap sorted = new TreeMap(props);
305
		for (Iterator iter = sorted.keySet().iterator(); iter.hasNext();) {
305
		for (Iterator iter = sorted.keySet().iterator(); iter.hasNext();) {
306
			String key = (String) iter.next();
306
			String key = (String) iter.next();

Return to bug 163421