Skip to content

Commit 1a74b1e

Browse files
committed
fix: cleanup
1 parent f371665 commit 1a74b1e

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

src/main/java/io/supertokens/storage/postgresql/config/PostgreSQLConfig.java

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -197,18 +197,14 @@ public static ArrayList<ConfigFieldInfo> getConfigFieldsInfo(Start start) {
197197

198198
JsonElement value = tenantConfig.get(field.getName());
199199

200-
String[] possibleValues = null; // TODO later, since none of them are enums right now
201-
boolean isConfigYamlOnly = false; // TODO later, since there are no such fields right now
202-
boolean isSaasProtected = false; // TODO
203-
204200
JsonElement defaultValue = defaultConfig.get(field.getName());
205201
boolean isNullable = defaultValue == null;
206202

207203
boolean isEditable = field.isAnnotationPresent(EditableInDashboard.class);
208204

209205
result.add(new ConfigFieldInfo(
210206
key, valueType, value, description, isDifferentAcrossTenants,
211-
possibleValues, isNullable, defaultValue, true, isEditable));
207+
null, isNullable, defaultValue, true, isEditable));
212208

213209
} catch (NoSuchFieldException e) {
214210
continue;

0 commit comments

Comments
 (0)