summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGES2
-rw-r--r--cs/src/Ice/Timer.cs2
2 files changed, 2 insertions, 2 deletions
diff --git a/CHANGES b/CHANGES
index a6b077beaab..22fa20c9043 100644
--- a/CHANGES
+++ b/CHANGES
@@ -150,7 +150,7 @@ C++ Changes
============
- Added ice_stackTrace() method to Exception classes, which returns the
- exception stack trace on platforms/compiler that support it.
+ exception stack trace on platforms/compilers that support it.
Currently this is only supported with GCC compiler.
- Removed AMD_Array_Object_ice_invoke class and instead add ice_response
diff --git a/cs/src/Ice/Timer.cs b/cs/src/Ice/Timer.cs
index f0ccc01a90c..7cf4cc66bfc 100644
--- a/cs/src/Ice/Timer.cs
+++ b/cs/src/Ice/Timer.cs
@@ -305,7 +305,7 @@ namespace IceInternal
public TimerTask task;
}
- private IDictionary<Token, object> _tokens = new Dictionary<Token, object>();
+ private IDictionary<Token, object> _tokens = new SortedDictionary<Token, object>();
private IDictionary<TimerTask, Token> _tasks = new Dictionary<TimerTask, Token>();
private Instance _instance;
private long _wakeUpTime = System.Int64.MaxValue;