We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e9151dd commit 959890dCopy full SHA for 959890d
mGAP/src/org/labkey/mgap/jbrowse/AnnotationModel.java
@@ -167,7 +167,8 @@ public void setHidden(Boolean hidden)
167
168
public boolean isIndexed()
169
{
170
- return _isIndexed == null || _isIndexed;
+ // Defaults to false when null
171
+ return _isIndexed != null && _isIndexed;
172
}
173
174
public void setIndexed(Boolean indexed)
@@ -187,7 +188,8 @@ public void setAllowableValues(String allowableValues)
187
188
189
public Boolean isInDefaultColumns()
190
- return _inDefaultColumns;
191
192
+ return _inDefaultColumns != null && _inDefaultColumns;
193
194
195
public void setInDefaultColumns(Boolean inDefaultColumns)
0 commit comments