View | Details | Raw Unified | Return to bug 266579 | Differences between
and this patch

Collapse All | Expand All

(-)META-INF/MANIFEST.MF (-1 / +1 lines)
Lines 15-21 Link Here
15
 org.eclipse.ui.ide.dialogs,
15
 org.eclipse.ui.ide.dialogs,
16
 org.eclipse.ui.ide.fileSystem,
16
 org.eclipse.ui.ide.fileSystem,
17
 org.eclipse.ui.ide.undo,
17
 org.eclipse.ui.ide.undo,
18
 org.eclipse.ui.internal.ide;x-friends:="org.eclipse.ui.ide.application,org.eclipse.ui.navigator.resources",
18
 org.eclipse.ui.internal.ide;x-friends:="org.eclipse.ui.ide.application,org.eclipse.ui.navigator.resources,org.eclipse.debug.ui",
19
 org.eclipse.ui.internal.ide.actions;x-internal:=true,
19
 org.eclipse.ui.internal.ide.actions;x-internal:=true,
20
 org.eclipse.ui.internal.ide.commands;x-internal:=true,
20
 org.eclipse.ui.internal.ide.commands;x-internal:=true,
21
 org.eclipse.ui.internal.ide.dialogs;x-friends:="org.eclipse.ui.ide.application",
21
 org.eclipse.ui.internal.ide.dialogs;x-friends:="org.eclipse.ui.ide.application",
(-)src/org/eclipse/ui/ide/dialogs/AbstractEncodingFieldEditor.java (-1 / +1 lines)
Lines 401-407 Link Here
401
	 * @return <code>true</code> if the encoding is valid, <code>false</code>
401
	 * @return <code>true</code> if the encoding is valid, <code>false</code>
402
	 *         otherwise
402
	 *         otherwise
403
	 */
403
	 */
404
	private boolean isValidEncoding(String enc) {
404
	public static boolean isValidEncoding(String enc) {
405
		try {
405
		try {
406
			return Charset.isSupported(enc);
406
			return Charset.isSupported(enc);
407
		} catch (IllegalCharsetNameException e) {
407
		} catch (IllegalCharsetNameException e) {

Return to bug 266579