Fixed pmd
This commit is contained in:
parent
8a471d0771
commit
85667c91e4
@ -37,19 +37,19 @@ public class Section {
|
|||||||
|
|
||||||
public boolean isVertebrateStudy() {
|
public boolean isVertebrateStudy() {
|
||||||
return tabularData != null
|
return tabularData != null
|
||||||
&& ((tabularData.containsKey("Vertebrate study Y/N")
|
&& (tabularData.containsKey("Vertebrate study Y/N")
|
||||||
&& tabularData.get("Vertebrate study Y/N").getText().equals("Y"))
|
&& tabularData.get("Vertebrate study Y/N").getText().equals("Y")
|
||||||
|| (tabularData.containsKey("Verte brate study Y/N")
|
|| tabularData.containsKey("Verte brate study Y/N")
|
||||||
&& tabularData.get("Verte brate study Y/N").getText().equals("Y")));
|
&& tabularData.get("Verte brate study Y/N").getText().equals("Y"));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
public boolean isNotVertebrateStudy() {
|
public boolean isNotVertebrateStudy() {
|
||||||
return tabularData != null
|
return tabularData != null
|
||||||
&& ((tabularData.containsKey("Vertebrate study Y/N")
|
&& (tabularData.containsKey("Vertebrate study Y/N")
|
||||||
&& tabularData.get("Vertebrate study Y/N").getText().equals("N"))
|
&& tabularData.get("Vertebrate study Y/N").getText().equals("N")
|
||||||
|| (tabularData.containsKey("Verte brate study Y/N")
|
|| tabularData.containsKey("Verte brate study Y/N")
|
||||||
&& tabularData.get("Verte brate study Y/N").getText().equals("N")));
|
&& tabularData.get("Verte brate study Y/N").getText().equals("N"));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user