Skip to content

Commit

Permalink
Exhanges a TODO to a comment
Browse files Browse the repository at this point in the history
  • Loading branch information
koppor committed Oct 19, 2024
1 parent aa1fa0b commit a1a7731
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/main/java/org/jabref/model/entry/field/FieldFactory.java
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,11 @@ public static List<Field> getDefaultGeneralFields() {
return defaultGeneralFields;
}

// TODO: This should ideally be user configurable! (https://github.com/JabRef/jabref/issues/9840)
/**
* Note: User configurability is discussed at <a href="https://github.com/JabRef/jabref/issues/9840">#9840</a>.
*
* @param nonWrappableFields This comes from the preferences - and introduces user configuration.
*/
// TODO: Move somewhere more appropriate in the future
public static boolean isMultiLineField(final Field field, List<Field> nonWrappableFields) {
return field.getProperties().contains(FieldProperty.MULTILINE_TEXT) || nonWrappableFields.contains(field);
Expand Down

0 comments on commit a1a7731

Please sign in to comment.