* lib/rexml/parsers/baseparser.rb: use private instead of _xxx

method name. This is Ruby code not Python code.
  refs #5696


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@34204 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
kou 2012-01-03 15:21:53 +00:00
Родитель b53d9940f9
Коммит bd895ab176
2 изменённых файлов: 9 добавлений и 2 удалений

Просмотреть файл

@ -1,3 +1,9 @@
Wed Jan 4 00:19:54 2012 Kouhei Sutou <kou@cozmixng.org>
* lib/rexml/parsers/baseparser.rb: use private instead of _xxx
method name. This is Ruby code not Python code.
refs #5696
Tue Jan 03 23:57:37 2012 Ayumu AIZAWA <ayumu.aizawa@gmail.com>
* lib/rexml/parsers/baseparser.rb: rexml BaseParser uses

Просмотреть файл

@ -180,14 +180,14 @@ module REXML
# Returns the next event. This is a +PullEvent+ object.
def pull
_pull_inner.tap do |event|
pull_event.tap do |event|
@listeners.each do |listener|
listener.receive event
end
end
end
def _pull_inner
def pull_event
if @closed
x, @closed = @closed, nil
return [ :end_element, x ]
@ -436,6 +436,7 @@ module REXML
end
return [ :dummy ]
end
private :pull_event
def entity( reference, entities )
value = nil