Rightpoint / Raizlabs-Android-Style

The Raizlabs Android Style Guide
38 stars 3 forks source link

May be null javadoc #13

Open RZpowelldev opened 9 years ago

RZpowelldev commented 9 years ago

Would the @Nullable annotation serve the purpose of noting that a parameter may be null?

agrosner commented 9 years ago

@RZpowelldev not a bad idea, but I'd rather keep things simple and specify that a param be @NotNull to expect not null params. Otherwise a null param is considered valid.