Tom Eugelink

Results 21 issues of Tom Eugelink

## Expected behavior We have the following setup: ```java class AuthorizationAssignment { @ManyToMany(fetch = FetchType.EAGER, cascade = CascadeType.ALL) @JoinTable(name = "authorizationassignment_authorizationprofile", joinColumns = {@JoinColumn(name = "authorizationassignment")}, inverseJoinColumns = {@JoinColumn(name =...

on hold

We have the following collection: ```java public class Expense { @OneToMany(orphanRemoval=true, mappedBy = "expense", cascade = CascadeType.ALL) protected List expenseDistances; } ``` If a setter simply assigns the collection under...

on hold

This PR was automatically created by Snyk using the credentials of a real user.Snyk has created this PR to upgrade org.testfx:testfx-junit from 4.0.15-alpha to 4.0.17. :information_source: Keep your dependencies up-to-date....

This PR was automatically created by Snyk using the credentials of a real user.Snyk has created this PR to upgrade org.testfx:testfx-core from 4.0.16-alpha to 4.0.17. :information_source: Keep your dependencies up-to-date....

Just a question; have you ever gotten the MFA version working? I see you use the Apache library, but AFAIK it uses the callback (which can't be set for Tesla)....

It is common to write code in English even if the user interface is intended to run in a different language. So this result that CrudUI has english labels in...

The descriptive text for parameters is present in the swagger output, so it is harvested, but it is not in the asciidoc file. I'd figure that would be very relevant...

Opening the settings show the "please allow" overlay. I've tried many solutions, from Karabiner reinstall, to startup in safe mode. Manually starting from a terminal shows a different error. What...

The stacktraces says to report it here if I have no idea why I'm getting the exception. Well... We're upgrading from Mockito 3.2.4 to 5.13.0 on WildFly 33.0.1. I've included...

Given these classes: ```java @Entity @Table(name = "product") @Inheritance(strategy = InheritanceType.SINGLE_TABLE) @DiscriminatorColumn(name = "type", discriminatorType = DiscriminatorType.INTEGER) public abstract class Product extends BaseWithSave implements RegistrationProduct, Transferable, Auditable { } @Entity...