Avoid using INDEXABLE_ITERATION_CURSOR.is_last
This commit is contained in:
@@ -227,17 +227,20 @@ feature {WSF_RESPONSE} -- Output
|
|||||||
across
|
across
|
||||||
meths as rq
|
meths as rq
|
||||||
loop
|
loop
|
||||||
|
s.append_character (' ')
|
||||||
if l_url /= Void and then rq.item.is_case_insensitive_equal ("GET") then
|
if l_url /= Void and then rq.item.is_case_insensitive_equal ("GET") then
|
||||||
s.append ("<a href=%"" + l_base_url + l_url + "%">" + rq.item + "</a>")
|
s.append ("<a href=%"" + l_base_url + l_url + "%">" + rq.item + "</a>")
|
||||||
else
|
else
|
||||||
s.append (rq.item)
|
s.append (rq.item)
|
||||||
end
|
end
|
||||||
if not rq.is_last then
|
s.append_character (',')
|
||||||
s.append (",")
|
|
||||||
end
|
end
|
||||||
s.append (" ")
|
if s[s.count] = ',' then
|
||||||
|
s.put (' ', s.count)
|
||||||
|
else
|
||||||
|
s.append_character (' ')
|
||||||
end
|
end
|
||||||
s.append ("]")
|
s.append_character (']')
|
||||||
end
|
end
|
||||||
|
|
||||||
s.append (" <em class=%"mappingdoc%">" + html_encoder.encoded_string (m.description) + "</em> ")
|
s.append (" <em class=%"mappingdoc%">" + html_encoder.encoded_string (m.description) + "</em> ")
|
||||||
|
|||||||
Reference in New Issue
Block a user