Skip to content

Commit af4fa5f

Browse files
authored
Remove the user-defined flag field option (#2893)
1 parent 90d023b commit af4fa5f

File tree

3 files changed

+1
-256
lines changed

3 files changed

+1
-256
lines changed

src/org/labkey/test/params/FieldDefinition.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -606,7 +606,6 @@ public boolean isMeasureByDefault()
606606
}
607607
};
608608
ColumnType File = new ColumnTypeImpl("File", "http://cpas.fhcrc.org/exp/xml#fileLink");
609-
ColumnType Flag = new ColumnTypeImpl("Flag", "string", "http://www.labkey.org/exp/xml#flag", null);
610609
ColumnType Attachment = new ColumnTypeImpl("Attachment", "http://www.labkey.org/exp/xml#attachment");
611610
ColumnType User = new ColumnTypeImpl("User", "int", null, new IntLookup("core", "users"));
612611
@Deprecated(since = "22.10") // 'Lookup' isn't a type outside of the UI

src/org/labkey/test/tests/AbstractAssayTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -388,7 +388,7 @@ protected void defineAssay()
388388
.setType(TEST_ASSAY_DATA_PROP_TYPES[i - TEST_ASSAY_DATA_PREDEFINED_PROP_COUNT])
389389
.setLabel(TEST_ASSAY_DATA_PROP_NAME + i);
390390
}
391-
propertiesPanel.addField("Flags").setType(FieldDefinition.ColumnType.Flag);
391+
392392
// Set some to required
393393
propertiesPanel.getField(0).setRequiredField(true);
394394
propertiesPanel.getField(TEST_ASSAY_DATA_PREDEFINED_PROP_COUNT + 2).setRequiredField(true);

src/org/labkey/test/tests/FlagColumnTest.java

Lines changed: 0 additions & 254 deletions
This file was deleted.

0 commit comments

Comments
 (0)