Skip to content

Instantly share code, notes, and snippets.

@apoleon
Created September 24, 2013 21:23
Show Gist options
  • Save apoleon/6691463 to your computer and use it in GitHub Desktop.
Save apoleon/6691463 to your computer and use it in GitHub Desktop.
From: Markus Koschany <apo@gambaru.de>
Date: Tue, 24 Sep 2013 22:50:29 +0200
Subject: remove unmappable characters
Unmappable characters prevent building the javadoc documentation.
---
src/com/jidesoft/plaf/eclipse/Eclipse3xJideTabbedPaneUI.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/com/jidesoft/plaf/eclipse/Eclipse3xJideTabbedPaneUI.java b/src/com/jidesoft/plaf/eclipse/Eclipse3xJideTabbedPaneUI.java
index ee62e61..2289caa 100644
--- a/src/com/jidesoft/plaf/eclipse/Eclipse3xJideTabbedPaneUI.java
+++ b/src/com/jidesoft/plaf/eclipse/Eclipse3xJideTabbedPaneUI.java
@@ -202,7 +202,7 @@ public class Eclipse3xJideTabbedPaneUI extends VsnetJideTabbedPaneUI {
int next = _tabRuns[(i == _runCount - 1) ? 0 : i + 1];^M
int end = (next != 0 ? next - 1 : tabCount - 1);^M
for (int j = start; j <= end; j++) {^M
- if (_rects[j].intersects(clipRect)) {// Á½ÕßÊÇ·ñÏཻ^M
+ if (_rects[j].intersects(clipRect)) {^M
paintTab(g, tabPlacement, _rects, j, iconRect, textRect);^M
}^M
}^M
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment