}
public void applyFix(@NotNull Project project, @NotNull ProblemDescriptor descriptor) {
final GherkinTableRow headerRow = myTable.getHeaderRow();
if (headerRow != null) {
headerRow.deleteCell(myColumnIndex);
}
for (GherkinTableRow row : myTable.getDataRows()) {
row.deleteCell(myColumnIndex);
}
}