Return-Path: X-Original-To: apmail-chemistry-commits-archive@www.apache.org Delivered-To: apmail-chemistry-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 4E22CF1C2 for ; Wed, 27 Mar 2013 11:34:38 +0000 (UTC) Received: (qmail 42978 invoked by uid 500); 27 Mar 2013 11:34:38 -0000 Delivered-To: apmail-chemistry-commits-archive@chemistry.apache.org Received: (qmail 42845 invoked by uid 500); 27 Mar 2013 11:34:36 -0000 Mailing-List: contact commits-help@chemistry.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@chemistry.apache.org Delivered-To: mailing list commits@chemistry.apache.org Received: (qmail 42801 invoked by uid 99); 27 Mar 2013 11:34:34 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 27 Mar 2013 11:34:34 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 27 Mar 2013 11:34:32 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 857FB23888CD; Wed, 27 Mar 2013 11:34:11 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1461533 - /chemistry/dotcmis/trunk/DotCMIS/data/data-impl.cs Date: Wed, 27 Mar 2013 11:34:11 -0000 To: commits@chemistry.apache.org From: fmui@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20130327113411.857FB23888CD@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: fmui Date: Wed Mar 27 11:34:11 2013 New Revision: 1461533 URL: http://svn.apache.org/r1461533 Log: DotCMIS: fixed typo in exception Modified: chemistry/dotcmis/trunk/DotCMIS/data/data-impl.cs Modified: chemistry/dotcmis/trunk/DotCMIS/data/data-impl.cs URL: http://svn.apache.org/viewvc/chemistry/dotcmis/trunk/DotCMIS/data/data-impl.cs?rev=1461533&r1=1461532&r2=1461533&view=diff ============================================================================== --- chemistry/dotcmis/trunk/DotCMIS/data/data-impl.cs (original) +++ chemistry/dotcmis/trunk/DotCMIS/data/data-impl.cs Wed Mar 27 11:34:11 2013 @@ -505,7 +505,7 @@ namespace DotCMIS.Data.Impl case PropertyType.Integer: if (!(value is sbyte || value is byte || value is short || value is ushort || value is int || value is uint || value is long)) { - throw new ArgumentException("Property '" + Id + "' is an Id property!"); + throw new ArgumentException("Property '" + Id + "' is an Integer property!"); } break; case PropertyType.Boolean: