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

Collapse All | Expand All

(-)formatter/org/eclipse/jdt/internal/formatter/comment/HTMLEntity2JavaReader.java (-1 / +1 lines)
Lines 75-81 Link Here
75
				} else {
75
				} else {
76
					ch= Integer.parseInt(symbol.substring(1), 10);
76
					ch= Integer.parseInt(symbol.substring(1), 10);
77
				}
77
				}
78
				return " " + (char) ch; //$NON-NLS-1$
78
				return String.valueOf((char) ch);
79
			} catch (NumberFormatException e) {
79
			} catch (NumberFormatException e) {
80
				// ignore
80
				// ignore
81
			}
81
			}

Return to bug 198153