Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Vogel2019-09-02 12:57:28 +0000
committerLars Vogel2019-09-12 15:19:06 +0000
commit501326592cbf446a9a0f48a5a15b9f2e215f54a7 (patch)
treea716b8a9f3c22b954d2728b9b349a49f35bdaf39
parent7a622d0fadc3ea0162ceb413466c855771ecdac6 (diff)
downloadeclipse.platform.ui-501326592cbf446a9a0f48a5a15b9f2e215f54a7.tar.gz
eclipse.platform.ui-501326592cbf446a9a0f48a5a15b9f2e215f54a7.tar.xz
eclipse.platform.ui-501326592cbf446a9a0f48a5a15b9f2e215f54a7.zip
Bug 550651 - Make getComputedStyle private
Change-Id: Ib27c1d88fb419b4f0db656eecc05d7fbc93e9d85 Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com>
-rw-r--r--bundles/org.eclipse.e4.ui.css.core/src/org/eclipse/e4/ui/css/core/impl/dom/ViewCSSImpl.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.e4.ui.css.core/src/org/eclipse/e4/ui/css/core/impl/dom/ViewCSSImpl.java b/bundles/org.eclipse.e4.ui.css.core/src/org/eclipse/e4/ui/css/core/impl/dom/ViewCSSImpl.java
index 134e9b4782f..0e13574d5b5 100644
--- a/bundles/org.eclipse.e4.ui.css.core/src/org/eclipse/e4/ui/css/core/impl/dom/ViewCSSImpl.java
+++ b/bundles/org.eclipse.e4.ui.css.core/src/org/eclipse/e4/ui/css/core/impl/dom/ViewCSSImpl.java
@@ -110,7 +110,7 @@ public class ViewCSSImpl implements ViewCSS, ExtendedDocumentCSS.StyleSheetChang
return cssRules;
}
- public CSSStyleDeclaration getComputedStyle(List<CSSRule> ruleList, Element elt, String pseudoElt) {
+ private CSSStyleDeclaration getComputedStyle(List<CSSRule> ruleList, Element elt, String pseudoElt) {
List<StyleWrapper> styleDeclarations = null;
StyleWrapper firstStyleDeclaration = null;
int position = 0;

Back to the top