Skip to content

Commit

Permalink
Merge pull request #12032 from JabRef/remove-TODO-by-comment
Browse files Browse the repository at this point in the history
Exhanges a TODO to a comment
  • Loading branch information
Siedlerchr authored Oct 19, 2024
2 parents c8724f0 + a1a7731 commit b8bb6bf
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 b8bb6bf

Please sign in to comment.