Browse Source

minor build fix to catch clause

git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/trunk@1767 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61
shortcuts
Dickon Field 20 years ago
parent
commit
b8f7f165e7
  1. 4
      src/AddIns/Misc/SharpDbTools/Project/Src/Model/DbModelInfo.cs

4
src/AddIns/Misc/SharpDbTools/Project/Src/Model/DbModelInfo.cs

@ -71,7 +71,7 @@ namespace SharpDbTools.Model
} }
catch(ArgumentException) { catch(ArgumentException) {
// see comment below - it is correct to bury this exception // see comment below - it is correct to bury this exception
LoggingService.Info("InvariantName property was accessed while undefined" + e); //LoggingService.Info("InvariantName property was accessed while undefined" + e);
} }
return invariantName; return invariantName;
} }
@ -107,7 +107,7 @@ namespace SharpDbTools.Model
// this simply indicates that this attribute was not defined when the // this simply indicates that this attribute was not defined when the
// DbModelInfo was saved, returning null makes sense here - so it is // DbModelInfo was saved, returning null makes sense here - so it is
// correct to bury this exception // correct to bury this exception
LoggingService.Info("InvariantName property was accessed while undefined" + e); //LoggingService.Info("InvariantName property was accessed while undefined" + e);
} }
return connectionString; return connectionString;
} }

Loading…
Cancel
Save