aboutsummaryrefslogtreecommitdiffstats
path: root/src/examples
diff options
context:
space:
mode:
authorAndreas Beeker <kiwiwings@apache.org>2016-12-07 23:45:38 +0000
committerAndreas Beeker <kiwiwings@apache.org>2016-12-07 23:45:38 +0000
commit47a5dbaeb25c8699d3f736dc9af4daa1cce13f98 (patch)
tree166eb78813a5aad1ad7a9dc8f85747a49e9b5f96 /src/examples
parent79123c3dda7275c705a850682f5d061da04694a9 (diff)
downloadpoi-47a5dbaeb25c8699d3f736dc9af4daa1cce13f98.tar.gz
poi-47a5dbaeb25c8699d3f736dc9af4daa1cce13f98.zip
SonarCube fix - make members private
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1773165 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/examples')
-rw-r--r--src/examples/src/org/apache/poi/hpsf/examples/CopyCompare.java6
-rw-r--r--src/examples/src/org/apache/poi/hpsf/examples/WriteAuthorAndTitle.java6
2 files changed, 6 insertions, 6 deletions
diff --git a/src/examples/src/org/apache/poi/hpsf/examples/CopyCompare.java b/src/examples/src/org/apache/poi/hpsf/examples/CopyCompare.java
index 43ea2e9d8d..d276fa4e72 100644
--- a/src/examples/src/org/apache/poi/hpsf/examples/CopyCompare.java
+++ b/src/examples/src/org/apache/poi/hpsf/examples/CopyCompare.java
@@ -288,9 +288,9 @@ public class CopyCompare
* MutablePropertySet#MutablePropertySet(PropertySet)} constructor.</p>
*/
static class CopyFile implements POIFSReaderListener {
- String dstName;
- OutputStream out;
- POIFSFileSystem poiFs;
+ private String dstName;
+ private OutputStream out;
+ private POIFSFileSystem poiFs;
/**
diff --git a/src/examples/src/org/apache/poi/hpsf/examples/WriteAuthorAndTitle.java b/src/examples/src/org/apache/poi/hpsf/examples/WriteAuthorAndTitle.java
index d08d778b0a..4e86030a54 100644
--- a/src/examples/src/org/apache/poi/hpsf/examples/WriteAuthorAndTitle.java
+++ b/src/examples/src/org/apache/poi/hpsf/examples/WriteAuthorAndTitle.java
@@ -131,9 +131,9 @@ public class WriteAuthorAndTitle
*/
static class ModifySICopyTheRest implements POIFSReaderListener
{
- String dstName;
- OutputStream out;
- POIFSFileSystem poiFs;
+ private String dstName;
+ private OutputStream out;
+ private POIFSFileSystem poiFs;
/**