Remove confusing trailing dot
authorMarek Safar <marek.safar@gmail.com>
Thu, 7 Mar 2013 08:31:06 +0000 (09:31 +0100)
committerMarek Safar <marek.safar@gmail.com>
Thu, 7 Mar 2013 08:31:48 +0000 (09:31 +0100)
mcs/class/corlib/System/Activator.cs

index 1828f310bc05503cba23a10c42baea68cf2620c3..220670765a5e4af3f74e9741dd0b64d7d9bc5d56 100644 (file)
@@ -323,8 +323,7 @@ namespace System
                                if (type.IsValueType)
                                        return CreateInstanceInternal (type);
 
-                               throw new MissingMethodException (Locale.GetText ("Default constructor not found for type " + 
-                                                       type.FullName + "."));
+                               throw new MissingMethodException (Locale.GetText ("Default constructor not found for type " + type.FullName));
                        }
 
                        return ctor.InternalInvoke (null, null);