Skip to content

Commit 02f5a09

Browse files
committed
Added comment to explain why conversion to string 8 is safe
1 parent cb3de17 commit 02f5a09

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

library/server/wsf/src/response/wsf_trace_response.e

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ feature {WSF_RESPONSE} -- Output
4545
req := request
4646
if attached req.raw_header_data as l_header then
4747
create s.make (l_header.count)
48-
s.append (l_header.to_string_8)
48+
s.append (l_header.to_string_8) -- Is valid as string 8, as ensured by req.raw_header_data
4949
s.append_character ('%N')
5050
else
5151
create s.make_empty
@@ -99,7 +99,7 @@ feature {WSF_RESPONSE} -- Output
9999
end
100100

101101
note
102-
copyright: "2011-2012, Jocelyn Fiat, Javier Velilla, Olivier Ligot, Eiffel Software and others"
102+
copyright: "2011-2014, Jocelyn Fiat, Javier Velilla, Olivier Ligot, Colin Adams, Eiffel Software and others"
103103
license: "Eiffel Forum License v2 (see http://www.eiffel.com/licensing/forum.txt)"
104104
source: "[
105105
Eiffel Software

0 commit comments

Comments
 (0)