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

(-)HistoryItem.java (-1 / +4 lines)
Lines 84-90 Link Here
84
	 * @see org.eclipse.compare.IEncodedStreamContentAccessor#getCharset()
84
	 * @see org.eclipse.compare.IEncodedStreamContentAccessor#getCharset()
85
	 */
85
	 */
86
	public String getCharset() throws CoreException {
86
	public String getCharset() throws CoreException {
87
		return fFileState.getCharset();
87
	    String charset= fFileState.getCharset();
88
	    if (charset == null && fBase instanceof IEncodedStreamContentAccessor)
89
	        charset= ((IEncodedStreamContentAccessor)fBase).getCharset();
90
		return charset;
88
	}
91
	}
89
}
92
}
90
93

Return to bug 65460