You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
public class Rule {
public static final class Phoneme implements PhonemeExpr {
public static final Comparator<Phoneme> COMPARATOR = new Comparator<Phoneme>() {[...]};
private final StringBuilder phonemeText;
private final Language language;
public Phoneme(final CharSequence phonemeText, final Language language) {
this.phonemeText = new StringBuilder(phonemeText);
this.language = language;
}
The last this are printed as following: Rule.Phoneme.this leading to a compilation error because the fields are final.
The text was updated successfully, but these errors were encountered:
In the following structure:
The last
this
are printed as following:Rule.Phoneme.this
leading to a compilation error because the fields arefinal
.The text was updated successfully, but these errors were encountered: