aboutsummaryrefslogtreecommitdiffstats
path: root/lib/rexml/sax2listener.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/rexml/sax2listener.rb')
-rw-r--r--lib/rexml/sax2listener.rb3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/rexml/sax2listener.rb b/lib/rexml/sax2listener.rb
index 40a77ed464..9a992917e6 100644
--- a/lib/rexml/sax2listener.rb
+++ b/lib/rexml/sax2listener.rb
@@ -84,11 +84,14 @@ module REXML
# @p version the version attribute value. EG, "1.0"
# @p encoding the encoding attribute value, or nil. EG, "utf"
# @p standalone the standalone attribute value, or nil. EG, nil
+ # @p spaced the declaration is followed by a line break
def xmldecl version, encoding, standalone
end
# Called when a comment is encountered.
# @p comment The content of the comment
def comment comment
end
+ def progress position
+ end
end
end