diff options
author | fcolin | 2007-02-01 09:42:37 +0000 |
---|---|---|
committer | fcolin | 2007-02-01 09:42:37 +0000 |
commit | 8699ca5c312befe3058c2b56b759a78f2af6721f (patch) | |
tree | 8982e97bad1669c0ed22168dd21afac4c9a4e1e5 /CSharp/Ivy | |
parent | 3c6b54ffd53d341a6cd0eaa9131ce1cf17e8ecc5 (diff) | |
download | ivy-csharp-8699ca5c312befe3058c2b56b759a78f2af6721f.zip ivy-csharp-8699ca5c312befe3058c2b56b759a78f2af6721f.tar.gz ivy-csharp-8699ca5c312befe3058c2b56b759a78f2af6721f.tar.bz2 ivy-csharp-8699ca5c312befe3058c2b56b759a78f2af6721f.tar.xz |
Utilisateur : Fcolin Date : 2/02/04 Heure : 16:31 Archivé dans $/EScribe/Ivy Commentaire: (vss 20)
Diffstat (limited to 'CSharp/Ivy')
-rw-r--r-- | CSharp/Ivy/Ivy/Ivy.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CSharp/Ivy/Ivy/Ivy.cs b/CSharp/Ivy/Ivy/Ivy.cs index ba25733..cfec5cb 100644 --- a/CSharp/Ivy/Ivy/Ivy.cs +++ b/CSharp/Ivy/Ivy/Ivy.cs @@ -593,7 +593,7 @@ namespace IvyBus internal bool CheckRegexp(String exp)
{
bool regexp_ok = true;
- if (exp.StartsWith("^") && sent_messageClasses != null)
+ if ((sent_messageClasses != null) && exp.StartsWith("^") )
{
regexp_ok = false;
foreach (string exp_class in sent_messageClasses)
|