Ruslan Stelmachenko

Results 86 comments of Ruslan Stelmachenko

@coobird Thanks for the explanation! Yes, this is how `.crop(Position)` works and this is definitely useful behavior. But what if I want just a simple crop, like the author of...

Nevermind, I found a solution! `.sourceRegion(int x, int y, int width, int height)` FTW! It does exactly what I described. And I can even do source cropping and `.crop()` cropping...

Honestly, I'm not sure why `Resizers.NULL` is required. I stole this "hack" from my old project. Maybe setting `scale` is really enough, and I did set `Resizers.NULL` just to be...

Hi! I found another issue with `GWT: possiblyLaunchGwtSuperDevModeCodeServer: Does not have a GWT Facet.` My project structure is simple: ``` |- main-project-module |--- gwt-module (client & server) |--- utils |---...

I think the problem here is that `ResponseEntity` is parameterized class, and the only way to deserialize json response is to read it's type parameter. Imageine a feign method that...

The firefox doesn't work also: ``` TypeError: Argument 1 is not valid for any of the 1-argument overloads of URL.createObjectURL. serverless-webrtc.js:163:17 createLocalOffer http://127.0.0.1:8080/js/serverless-webrtc.js:163 ```

Happens to me when I tried to open old `*.mv.db` file (Not sure which H2 version was used to create it) with `1.4.200` JDBC driver. It throwed the exception: ```...

Thanks, @artembilan ! I just want to clarify **why** I raised this topic. > But I understand your concern as end-user contributor you really don't care what Spring project you...

@artembilan Thanks. Yes, I think we are on the same page! I call it TTL here because it is named TTL in the code of current implementation of `org.springframework.integration.jdbc.lock.DefaultLockRepository`. ```java...

By the way, if this feature will be implemented, it would be better to change "renew" implementation to update new `EXPIRATION_DATE` field instead of `CREATED_DATE`. `CREATED_DATE` must never be changed...