diff options
author | fcolin | 2007-02-01 09:55:31 +0000 |
---|---|---|
committer | fcolin | 2007-02-01 09:55:31 +0000 |
commit | 5f02e97f3e8e18f09130583e959b7783b71d98f1 (patch) | |
tree | 55c0a8963268a5e51b04f632c020924358419cd9 /CSharp | |
parent | 0af0073c8d78f3f270359bf3e312f61d21abd4db (diff) | |
download | ivy-csharp-5f02e97f3e8e18f09130583e959b7783b71d98f1.zip ivy-csharp-5f02e97f3e8e18f09130583e959b7783b71d98f1.tar.gz ivy-csharp-5f02e97f3e8e18f09130583e959b7783b71d98f1.tar.bz2 ivy-csharp-5f02e97f3e8e18f09130583e959b7783b71d98f1.tar.xz |
Utilisateur : Fcolin Date : 6/02/06 Heure : 17:23 Archivé dans $/CSharp/Ivy/IvyPPC Commentaire: Assert au lieu de WriteLine ==> support dans le Compact FrameWork (vss 47)
Diffstat (limited to 'CSharp')
-rw-r--r-- | CSharp/Ivy/IvyPPC/Ivy.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CSharp/Ivy/IvyPPC/Ivy.cs b/CSharp/Ivy/IvyPPC/Ivy.cs index 474d213..26a4ac9 100644 --- a/CSharp/Ivy/IvyPPC/Ivy.cs +++ b/CSharp/Ivy/IvyPPC/Ivy.cs @@ -934,7 +934,7 @@ namespace IvyBus [Conditional("DEBUG")]
private void traceDebug(string s)
{
- Trace.WriteLineIf(debug, "-->ivy<-- " + s);
+ Trace.Assert(!debug, "-->ivy<-- " + s);
}
internal class Domain
|