From e616a05b261ac71aa28f23fb20f0203b7ef2eeab Mon Sep 17 00:00:00 2001 From: Simon Legner Date: Wed, 27 May 2015 22:49:13 +0200 Subject: [PATCH] Fix build: "unable to resolve class HyperlinkData" --- .../main/groovy/jd/gui/view/component/WebXmlFilePage.groovy | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/services/src/main/groovy/jd/gui/view/component/WebXmlFilePage.groovy b/services/src/main/groovy/jd/gui/view/component/WebXmlFilePage.groovy index 9fcf770..cb698a7 100644 --- a/services/src/main/groovy/jd/gui/view/component/WebXmlFilePage.groovy +++ b/services/src/main/groovy/jd/gui/view/component/WebXmlFilePage.groovy @@ -37,9 +37,9 @@ class WebXmlFilePage extends TypeHyperlinkPage implements UriGettable, ContentSa String getSyntaxStyle() { SyntaxConstants.SYNTAX_STYLE_XML } - protected boolean isHyperlinkEnabled(HyperlinkData hyperlinkData) { hyperlinkData.enabled } + protected boolean isHyperlinkEnabled(HyperlinkPage.HyperlinkData hyperlinkData) { hyperlinkData.enabled } - protected void openHyperlink(int x, int y, HyperlinkData hyperlinkData) { + protected void openHyperlink(int x, int y, HyperlinkPage.HyperlinkData hyperlinkData) { if (hyperlinkData.enabled) { // Save current position in history def location = textArea.getLocationOnScreen()