Radek Postołowicz
Radek Postołowicz
SSCCE: Starting point: this works: ```java import java.util.List; import org.junit.jupiter.api.Assertions; import org.junit.jupiter.api.Test; import org.mockito.ArgumentCaptor; import org.mockito.Mockito; class MockitoCaptorTest { @Test void test() { SpyClass spy = Mockito.spy(new SpyClass()); Mockito.doNothing().when(spy).doSmth(Mockito.any()); String...
SSCCE (taken from https://github.com/JetBrains/compose-jb/tree/master/tutorials/Desktop_Components#lazy-scrollable-components-with-scrollbar ; changed minimally to introduce variance in LazyColumn element's height): ```kotlin import androidx.compose.foundation.VerticalScrollbar import androidx.compose.foundation.background import androidx.compose.foundation.layout.Box import androidx.compose.foundation.layout.Spacer import androidx.compose.foundation.layout.fillMaxHeight import androidx.compose.foundation.layout.fillMaxSize import androidx.compose.foundation.layout.fillMaxWidth import...
It would be nice to have undo/redo. For instance: I accidentally staged file instead of revert. It's convenient to just hit ctrl + z and have it undone.
Is this project still maintained?
Generated builders contain constructor which in turn contains cast which javac (sometimes?) treats as redundant and complains about that with warning. Sample from my project: ``` DebitMandateBuilder.java:27: warning: [cast] redundant...
Why did you hardcode `"timestamp"` as revision property in `org.springframework.data.envers.repository.support.EnversRevisionRepositoryImpl#findLastChangeRevision` ? My custom revision entity has different `@RevisionTimestamp` property than `timestamp`. This results in `org.hibernate.QueryException: could not resolve property: timestamp...
Issue similar to the #179 but this time it's about Java. My organization uses `-Xlint:all -Werror` so it treats "unchecked" warnings in generated code as errors.