import android.support.annotation.NonNull;
public class Foo {
@NonNull
public final String tag;
public Foo() {
// "tag" is marked "android.support.annotation.NonNull" but is not initialized in this constructor.
this("default_tag");
}
public Foo(@NonNull String tag) {
this.tag = tag;
}
}--
You received this message because you are subscribed to the Google Groups "SonarQube" group.
To unsubscribe from this group and stop receiving emails from it, send an email to sonarqube+...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/sonarqube/6313ef2b-07c5-447e-84fd-6a9e60a57b79%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.