From 581d1e35f86077ce91a59ad3dc4760cda0b19071 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Wed, 17 Dec 2014 14:23:47 +0200 Subject: java: reduce visibility of some methods and fields found by UCDetector Change-Id: I0a0a00d1fae1fed2e6aef198b7a1482d7e7e29f0 --- unoxml/qa/complex/unoxml/DOMTest.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'unoxml/qa') diff --git a/unoxml/qa/complex/unoxml/DOMTest.java b/unoxml/qa/complex/unoxml/DOMTest.java index 6111199aca74..f630b9335faf 100644 --- a/unoxml/qa/complex/unoxml/DOMTest.java +++ b/unoxml/qa/complex/unoxml/DOMTest.java @@ -2897,7 +2897,7 @@ public class DOMTest } class MockNodeMap implements XNamedNodeMap { - MockAttr[] m_attributes; + private MockAttr[] m_attributes; MockNodeMap(MockAttr[] attrs) { m_attributes = attrs; } @@ -2932,7 +2932,7 @@ public class DOMTest } class MockElement extends MockNode implements XElement { - MockAttr[] m_attributes; + private MockAttr[] m_attributes; MockElement(String name, MockAttr[] attrs) { m_localname = name; m_attributes = attrs; -- cgit