diff options
Diffstat (limited to 'src/ooxml/java/org/apache/poi/POIXMLRelation.java')
-rw-r--r-- | src/ooxml/java/org/apache/poi/POIXMLRelation.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ooxml/java/org/apache/poi/POIXMLRelation.java b/src/ooxml/java/org/apache/poi/POIXMLRelation.java index 8578f8025b..6caa5af928 100644 --- a/src/ooxml/java/org/apache/poi/POIXMLRelation.java +++ b/src/ooxml/java/org/apache/poi/POIXMLRelation.java @@ -24,17 +24,17 @@ public abstract class POIXMLRelation { /** * Describes the content stored in a part. */ - protected String _type; + private String _type; /** * The kind of connection between a source part and a target part in a package. */ - protected String _relation; + private String _relation; /** * The path component of a pack URI. */ - protected String _defaultName; + private String _defaultName; /** * Defines what object is used to construct instances of this relationship |