| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [View Raw Code] [Original HTTPS Page] |
A message translation property was renamed.
This release breaks java code. See Required migration.
TextMessageTranslation.translatedText was renamed to text. The old getter, setter and fluent setter were removed.
Rename the accessors.
// before
translation.setTranslatedText("Willkommen");
String value = translation.getTranslatedText();
// after
translation.setText("Willkommen");
String value = translation.getText();Each of these compiles against 8.26.2 and fails to compile against 8.27.2:
Generated from revapi/8.26.2_8.27.2/, which holds the full report for both artifacts.
| Back | FazBrowse Home | New Git URL |