Jeremy White
Jeremy White
aaronpk's commit fixes this as well
@frankdugan3 that base image doesn't seem to exist anymore. Any chance you might know of an alternative?
This can be resolved by upgrading the `spring-boot-starter-parent` version to `2.0.9.RELEASE` in your `pom.xml` file. The rest of the Chapter 1 lesson works as expected with this change.
This could be resolved with an implementation of #29
Awesome! Super helpful information. I think if there were some slightly more complex samples, or even a separate sample app, you could demonstrate this without having to do a lot...
- [ ] Get rid of AWT color, switch to int - [ ] Remove usages for java.util.Objects class
Just found out that java.util.Objects is only included in Android as of Lollipop. Using it causes a crash on any earlier versions.
OK, it looks like that is all that's needed. It's unfortunate that there aren't any cross-platform Color objects, but the only method we were using was the RGBtoHSB algorithm. I...