diff options
author | Noel Grandin <noel@peralex.com> | 2014-12-17 14:23:47 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-12-19 11:49:10 +0200 |
commit | 581d1e35f86077ce91a59ad3dc4760cda0b19071 (patch) | |
tree | 3c363104a6376d101263ce30c9ecb26b7bee1a2e /unoxml | |
parent | 68d87e98951ae3ed5f7b863954667bfdd9805985 (diff) |
java: reduce visibility of some methods and fields
found by UCDetector
Change-Id: I0a0a00d1fae1fed2e6aef198b7a1482d7e7e29f0
Diffstat (limited to 'unoxml')
-rw-r--r-- | unoxml/qa/complex/unoxml/DOMTest.java | 4 |
1 files changed, 2 insertions, 2 deletions
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; |