Oliver Kopp

Results 447 issues of Oliver Kopp

Small follow-up to https://github.com/JabRef/jabref/pull/11304. Should not change any functionality, but cleaner code. ### Mandatory checks - [ ] Change in `CHANGELOG.md` described in a way that is understandable for the...

Entries last recently added from an import should be assigned to this group.

groups
needs-refinement

One enters a a URL to a .bib file ![grafik](https://github.com/JabRef/jabref/assets/1366654/9fa023a3-b79c-4966-97b3-5330c72ce183)

groups
needs-refinement

Current BibDesk behavior: ![grafik](https://github.com/JabRef/jabref/assets/1366654/93ab83b4-0599-4244-b251-1020762c2f58) ![grafik](https://github.com/JabRef/jabref/assets/1366654/7f720899-5df6-42a3-91b3-4b245669a2b8) ![grafik](https://github.com/JabRef/jabref/assets/1366654/4805abc9-4110-4761-995e-21de36288906) ![grafik](https://github.com/JabRef/jabref/assets/1366654/f07fe187-fe46-45c2-a54d-8a5c30ed79d1)

groups
needs-refinement

This is more a discussion. I am applying [prettier-java](https://github.com/jhipster/prettier-java) to my project (https://github.com/JabRef/jabref/pull/10646). It turned out best (in comparison to GJF, palantir-java, spring-java-style). It has very good review-friendly line wrapping....

bug

In case the method has two arguments and the first one is a lambda, then `ReplaceLambdaWithMethodReference` produces ``. ```diff - .filtered(Bindings.createObjectBinding(() -> this::showNode, filter)); + .filtered(Bindings.createObjectBinding(this::/*__TEMPLATE_STOP__*/ + , filter)); ```...

bug

```diff - String content = new StringBuilder() - .append(Localization.lang("A backup file for '%0' was found at [%1]", + String content = Localization.lang("A backup file for '%0' was found at [%1]",...

bug
good first issue

> org.openrewrite.internal.RecipeRunException: Exception while visiting project file 'src\main\java\org\jabref\model\openoffice\ootext\OOTextI ntoOO.java (in OOTextIntoOO.write)', caused by: org.openrewrite.java.controlflow.ControlFlowIllegalStateException: Unable to create new J.VariableDeclarations with name `pairIterator` File: https://github.com/JabRef/jabref/blob/main/src/main/java/org/jabref/model/openoffice/ootext/OOTextIntoOO.java ``` org.openrewrite.internal.RecipeRunException: Exception while visiting project...

bug

Current: ```diff - switch (keyBinding.get()) { - case DELETE_ENTRY: - new DeleteFileAction(dialogService, preferencesService, databaseContext, - viewModel, listView).execute(); - event.consume(); - break; - default: - // Pass other keys to children...

bug

I experience the output of ´StandardCharsets.` and I don't know why. Old: ```java metaList.add(XmpUtilShared.parseXmpMetadata(new ByteArrayInputStream(xmpMetaString.getBytes()))); ``` https://github.com/JabRef/jabref/blob/913b46cf0c31a4f7f73c84e4a8584c9adb8c701f/src/main/java/org/jabref/logic/xmp/XmpUtilReader.java#L130 New: ```java metaList.add(XmpUtilShared.parseXmpMetadata(new ByteArrayInputStream(xmpMetaString.getBytes(StandardCharsets.)))); ```

bug