Skip to content
Snippets Groups Projects
Commit 431f8f68 authored by Sebastian Krings's avatar Sebastian Krings
Browse files

getPossibleValues should return null to avoid a drop down menu in some of the rodin editors

parent 36699953
Branches
Tags
No related merge requests found
......@@ -39,7 +39,7 @@ public class InferredUnitPragmaAttribute implements IAttributeManipulation {
@Override
public String[] getPossibleValues(IRodinElement element,
IProgressMonitor monitor) {
return new String[] { "", "a", "b", "c" };
return null;
}
@Override
......
......@@ -38,7 +38,7 @@ public class UnitPragmaAttribute implements IAttributeManipulation {
@Override
public String[] getPossibleValues(IRodinElement element,
IProgressMonitor monitor) {
return new String[] { "", "a", "b", "c" };
return null;
}
@Override
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment