View | Details | Raw Unified | Return to bug 142326
Collapse All | Expand All

(-)src/org/eclipse/gmf/runtime/emf/core/internal/resources/PathmapManager.java (-8 lines)
Lines 715-728 Link Here
715
	 *  or a new pathmap URI otherwise.
715
	 *  or a new pathmap URI otherwise.
716
	 */
716
	 */
717
	public static URI denormalizeURI(URI uri) {
717
	public static URI denormalizeURI(URI uri) {
718
		if (!uri.isFile()) {
719
			if (!uri.scheme().equals("platform")) { //$NON-NLS-1$
720
				return uri;
721
			} else if (!uri.segment(0).equals("resource")) { //$NON-NLS-1$
722
				return uri;
723
			}
724
		}
725
		
726
		String uriAsString = uri.toString();
718
		String uriAsString = uri.toString();
727
		
719
		
728
		String maxValueString = null;
720
		String maxValueString = null;

Return to bug 142326