@@ -230,7 +230,7 @@ private CreateInteractionChoiceSet choiceFromCell(ChoiceCell cell){
230230 }
231231
232232 // HELPERS
233- private boolean shouldSendChoiceText () {
233+ boolean shouldSendChoiceText () {
234234 if (this .displayName != null && this .displayName .equals (DisplayType .GEN3_8_INCH )){
235235 return true ;
236236 }
@@ -239,25 +239,25 @@ private boolean shouldSendChoiceText() {
239239 : true ;
240240 }
241241
242- private boolean shouldSendChoiceSecondaryText () {
242+ boolean shouldSendChoiceSecondaryText () {
243243 return (defaultMainWindowCapability != null && defaultMainWindowCapability .getTextFields () != null )
244244 ? ManagerUtility .WindowCapabilityUtility .hasTextFieldOfName (defaultMainWindowCapability , TextFieldName .secondaryText )
245245 : true ;
246246 }
247247
248- private boolean shouldSendChoiceTertiaryText () {
248+ boolean shouldSendChoiceTertiaryText () {
249249 return (defaultMainWindowCapability != null && defaultMainWindowCapability .getTextFields () != null )
250250 ? ManagerUtility .WindowCapabilityUtility .hasTextFieldOfName (defaultMainWindowCapability , TextFieldName .tertiaryText )
251251 : true ;
252252 }
253253
254- private boolean shouldSendChoicePrimaryImage () {
254+ boolean shouldSendChoicePrimaryImage () {
255255 return (defaultMainWindowCapability != null && defaultMainWindowCapability .getImageFields () != null )
256256 ? ManagerUtility .WindowCapabilityUtility .hasImageFieldOfName (defaultMainWindowCapability , ImageFieldName .choiceImage )
257257 : true ;
258258 }
259259
260- private boolean shouldSendChoiceSecondaryImage () {
260+ boolean shouldSendChoiceSecondaryImage () {
261261 return (defaultMainWindowCapability != null && defaultMainWindowCapability .getImageFields () != null )
262262 ? ManagerUtility .WindowCapabilityUtility .hasImageFieldOfName (defaultMainWindowCapability , ImageFieldName .choiceSecondaryImage )
263263 : true ;
0 commit comments