Skip to content

Commit

Permalink
Fixing issue in netfx builds where local member is assigned but never…
Browse files Browse the repository at this point in the history
… used
  • Loading branch information
joperezr committed May 19, 2020
1 parent 1ebc2a9 commit 0511e02
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,9 @@ public static bool IsLibLdapInstalled
}
}
return _isLibLdapInstalled.Value;
#else // In .NET Framework ldap is always installed.
return true;
#else
_isLibLdapInstalled = true; // In .NET Framework ldap is always installed.
return _isLibLdapInstalled.Value;
#endif
}
}
Expand Down

0 comments on commit 0511e02

Please sign in to comment.