Should [StringFormatted](https://github.com/openrewrite/rewrite-migrate-java/blob/main/src/main/java/org/openrewrite/java/migrate/lang/StringFormatted.java) really be part of [org.openrewrite.java.migrate.UpgradeToJava17](https://github.com/openrewrite/rewrite-migrate-java/blob/main/src/main/resources/META-INF/rewrite/java-version-17.yml)? It feels a bit too opinionated to me. [String.format()](https://docs.oracle.com/en/java/javase/21/docs/api/java.base/java/lang/String.html#format(java.lang.String,java.lang.Object...)) isn't deprecated, and replacing it by "".formatted() doesn't always lead to more readable code. Given that it's [basically impossible to exclude a single recipe](https://github.com/openrewrite/rewrite-maven-plugin/pull/569#issuecomment-1576793092), maybe it could be removed from UpgradeToJava17?