Fixed a null reference problem with Unit values
This commit is contained in:
parent
0d9e131849
commit
904947bb08
@ -181,7 +181,7 @@ namespace VEPROMS.CSLA.Library
|
|||||||
// in the specified string
|
// in the specified string
|
||||||
string retvalu = "";
|
string retvalu = "";
|
||||||
string asis = "#";
|
string asis = "#";
|
||||||
if (str == null || str.Equals(string.Empty)) return null;
|
if (str == null || str.Equals(string.Empty)) return retvalu; // return a null (empty) string
|
||||||
/*
|
/*
|
||||||
* Bug fix: B2005-017 3/2/2005
|
* Bug fix: B2005-017 3/2/2005
|
||||||
* Need to use the largest procedure number length that's in the
|
* Need to use the largest procedure number length that's in the
|
||||||
|
Loading…
x
Reference in New Issue
Block a user