summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/isode/stroke/elements')
-rw-r--r--src/com/isode/stroke/elements/FormPage.java12
1 files changed, 2 insertions, 10 deletions
diff --git a/src/com/isode/stroke/elements/FormPage.java b/src/com/isode/stroke/elements/FormPage.java
index b23a6e2..ffb35a9 100644
--- a/src/com/isode/stroke/elements/FormPage.java
+++ b/src/com/isode/stroke/elements/FormPage.java
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2015 Isode Limited.
+ * Copyright (c) 2015-2016 Isode Limited.
* All rights reserved.
* See the COPYING file for more information.
*/
@@ -21,7 +21,6 @@ import java.util.Vector;
public class FormPage {
private String label_ = "";
- private String xmlns_ = "";
private Vector<FormText> textElements_ = new Vector<FormText>();
private Vector<FormReportedRef> reportedRefs_ = new Vector<FormReportedRef>();
private Vector<FormSection> childSections_ = new Vector<FormSection>();
@@ -32,7 +31,7 @@ public class FormPage {
* Default Constructor.
*/
public FormPage() {
- this.xmlns_ = "http://jabber.org/protocol/xdata-layout";
+
}
/**
@@ -51,13 +50,6 @@ public class FormPage {
}
/**
- * @return xmlns, Not Null.
- */
- public String getXMLNS() {
- return xmlns_;
- }
-
- /**
* @param textElement, Not Null.
*/
public void addTextElement(FormText textElement) {