Removed usage of remote anchor types.

This commit is contained in:
2014-02-28 14:25:13 +01:00
parent cc6d2f3023
commit bbc2bab0eb
11 changed files with 38 additions and 42 deletions

View File

@@ -21,7 +21,7 @@ feature {NONE} -- Initialization
make
-- Initialize `Current'.
do
create {ARRAYED_LIST [like errors.item]} errors.make (3)
create {ARRAYED_LIST [ERROR]} errors.make (3)
create error_added_actions
end
@@ -34,7 +34,7 @@ feature -- Access
do
Result := errors.first.code
end
feature -- Status
has_error: BOOLEAN
@@ -82,7 +82,7 @@ feature -- Synchronization
do
lst := synchronized_handlers
if lst = Void then
create {ARRAYED_LIST [like synchronized_handlers.item]} lst.make (0)
create {ARRAYED_LIST [ERROR_HANDLER]} lst.make (0)
lst.compare_references
synchronized_handlers := lst
end
@@ -312,7 +312,7 @@ feature -- Element changes
end
note
copyright: "2011-2012, Eiffel Software and others"
copyright: "2011-2014, Jocelyn Fiat, Eiffel Software and others"
license: "Eiffel Forum License v2 (see http://www.eiffel.com/licensing/forum.txt)"
source: "[
Eiffel Software