You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@chemistry.apache.org by fm...@apache.org on 2015/04/09 13:07:05 UTC

svn commit: r1672292 - /chemistry/dotcmis/trunk/DotCMIS/binding/binding-intf.cs

Author: fmui
Date: Thu Apr  9 11:07:04 2015
New Revision: 1672292

URL: http://svn.apache.org/r1672292
Log:
CMIS-907: fixed SPI class check

Modified:
    chemistry/dotcmis/trunk/DotCMIS/binding/binding-intf.cs

Modified: chemistry/dotcmis/trunk/DotCMIS/binding/binding-intf.cs
URL: http://svn.apache.org/viewvc/chemistry/dotcmis/trunk/DotCMIS/binding/binding-intf.cs?rev=1672292&r1=1672291&r2=1672292&view=diff
==============================================================================
--- chemistry/dotcmis/trunk/DotCMIS/binding/binding-intf.cs (original)
+++ chemistry/dotcmis/trunk/DotCMIS/binding/binding-intf.cs Thu Apr  9 11:07:04 2015
@@ -371,7 +371,7 @@ namespace DotCMIS.Binding
             {
                 string spiClass;
 
-                if (sessionParameters.TryGetValue(SessionParameter.BindingSpiClass, out spiClass))
+                if (!sessionParameters.TryGetValue(SessionParameter.BindingSpiClass, out spiClass))
                 {
                     throw new ArgumentException("SPI class entry (" + SessionParameter.BindingSpiClass + ") is missing!");
                 }