We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a962cb4 commit fb667b7Copy full SHA for fb667b7
firebase-firestore/src/main/java/com/google/firebase/firestore/PropertyName.java
@@ -38,7 +38,7 @@
38
* If the class only needs to be <em>written</em> into Firestore (and not read from Firestore) then
39
* the class can be simplified as follows:
40
* <pre>
41
- * {@literal data class Pojo(@get:PropertyName("my_foo") val foo: String? = null)}
+ * data class Pojo(@get:PropertyName("my_foo") val foo: String? = null)
42
* </pre>
43
* That is, {@code var} can be tightened to {@code val}, the secondary no-argument constructor can
44
* be omitted, and the {@code @set} use-site target can be omitted.
0 commit comments