Skip to content

Commit fb667b7

Browse files
committed
remove unnecessary {@literal } block
1 parent a962cb4 commit fb667b7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

firebase-firestore/src/main/java/com/google/firebase/firestore/PropertyName.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
* If the class only needs to be <em>written</em> into Firestore (and not read from Firestore) then
3939
* the class can be simplified as follows:
4040
* <pre>
41-
* {@literal data class Pojo(@get:PropertyName("my_foo") val foo: String? = null)}
41+
* data class Pojo(@get:PropertyName("my_foo") val foo: String? = null)
4242
* </pre>
4343
* That is, {@code var} can be tightened to {@code val}, the secondary no-argument constructor can
4444
* be omitted, and the {@code @set} use-site target can be omitted.

0 commit comments

Comments
 (0)