summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTarun Gupta <tarun1995gupta@gmail.com>2015-06-26 08:20:59 (GMT)
committerKevin Smith <kevin.smith@isode.com>2015-07-06 13:52:48 (GMT)
commitfcdff3f162995170469833a82f607903e660812d (patch)
treee9d3cc18c8454b43ebdc1e9b9568d1f4456b59eb /src/com/isode/stroke/elements/PubSubItems.java
parent79b532d8b6702a5599e7a3eac1416f562405668e (diff)
downloadstroke-fcdff3f162995170469833a82f607903e660812d.zip
stroke-fcdff3f162995170469833a82f607903e660812d.tar.bz2
Minor Fixes for Elements.
Adds Block Element, BlockList, and Unblock Element. Updates some Elements just for consistency. Updates Last Element, its Parser and Serializer for consistency with Swiften. License: This patch is BSD-licensed, see Documentation/Licenses/BSD-simplified.txt for details. Test-Information: None. Change-Id: If40c2516b944b1939db08721bb4de4554c3264f6
Diffstat (limited to 'src/com/isode/stroke/elements/PubSubItems.java')
-rw-r--r--src/com/isode/stroke/elements/PubSubItems.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/com/isode/stroke/elements/PubSubItems.java b/src/com/isode/stroke/elements/PubSubItems.java
index ae675e4..273b0e8 100644
--- a/src/com/isode/stroke/elements/PubSubItems.java
+++ b/src/com/isode/stroke/elements/PubSubItems.java
@@ -53,9 +53,9 @@ public void setNode(String node) {
node_ = node;
}
-Long maximumItems_;
-ArrayList<PubSubItem> items_ = new ArrayList<PubSubItem>();
-String subscriptionID_;
-String node_;
+private Long maximumItems_;
+private ArrayList<PubSubItem> items_ = new ArrayList<PubSubItem>();
+private String subscriptionID_;
+private String node_;
}