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

(-)src/org/eclipse/gmf/runtime/draw2d/ui/render/awt/internal/svg/SVGColorConverter.java (-1 / +1 lines)
Lines 128-134 Link Here
128
			int nStart = style.indexOf(attributeName + COLON);
128
			int nStart = style.indexOf(attributeName + COLON);
129
			if (nStart != -1) {
129
			if (nStart != -1) {
130
				if (nStart > 0)
130
				if (nStart > 0)
131
					preColor = style.substring(0, nStart - 1);
131
					preColor = style.substring(0, nStart);
132
								
132
								
133
				String postColor = ""; //$NON-NLS-1$
133
				String postColor = ""; //$NON-NLS-1$
134
				int nEnd = style.indexOf(SEMICOLON, nStart);
134
				int nEnd = style.indexOf(SEMICOLON, nStart);

Return to bug 163847