I was going through some of the NPOI 2.0.6 code, and spotted the if statement below with a SemiColon (;) at the end of line... this looks like an error, please confirm:
/SS/Usermodel/Sheet.cs
```
/**
* Checks wheter specific LatentStyleID is a latentStyle
*/
public bool IsLatentStyle(String latentStyleID)
{
foreach (CT_LsdException lsd in latentStyles.lsdException )
{
if (lsd.name.Equals(latentStyleID)) ;
return true;
}
return false;
}
```
/SS/Usermodel/Sheet.cs
```
/**
* Checks wheter specific LatentStyleID is a latentStyle
*/
public bool IsLatentStyle(String latentStyleID)
{
foreach (CT_LsdException lsd in latentStyles.lsdException )
{
if (lsd.name.Equals(latentStyleID)) ;
return true;
}
return false;
}
```