@@ -23,8 +23,8 @@ class Property {
2323
2424// Specify ObjectBox property type explicitly
2525enum PropertyType {
26- /// dart type=bool, size: 1-byte/8-bits
27- /// no need to specify explicitly, just use `bool`
26+ // dart type=bool, size: 1-byte/8-bits
27+ // no need to specify explicitly, just use `bool`
2828 // bool,
2929
3030 /// size: 1-byte/8-bits
@@ -39,22 +39,22 @@ enum PropertyType {
3939 /// size: 4-bytes/32-bits
4040 int ,
4141
42- /// dart type=int, size: 8-bytes/64-bits
43- /// no need to specify explicitly, just use `int`
42+ // dart type=int, size: 8-bytes/64-bits
43+ // no need to specify explicitly, just use `int`
4444 // long,
4545
4646 /// size: 4-bytes/32-bits
4747 float,
4848
49- /// dart type=double, size: 8-bytes/64-bits
50- /// no need to specify explicitly, just use `double`
49+ // dart type=double, size: 8-bytes/64-bits
50+ // no need to specify explicitly, just use `double`
5151 // double,
5252
53- /// dart type=String
54- /// no need to specify explicitly, just use `String`
53+ // dart type=String
54+ // no need to specify explicitly, just use `String`
5555 // string,
5656
57- /// Relation, currently not supported
57+ // Relation, currently not supported
5858 // relation,
5959
6060 /// Unix timestamp (milliseconds since 1970), size: 8-bytes/64-bits
@@ -69,8 +69,8 @@ enum PropertyType {
6969 /// - values are truncated to 8-bit int (0..255)
7070 byteVector,
7171
72- /// dart type=List<String>
73- /// no need to specify explicitly, just use `List<String> `
72+ // dart type=List<String>
73+ // no need to specify explicitly, just use `List<String> `
7474 // stringVector
7575}
7676
@@ -84,8 +84,8 @@ class Transient {
8484 const Transient ();
8585}
8686
87- /// See Sync() in sync.dart.
88- /// Defining a class with the same name here would cause a duplicate export.
87+ // See Sync() in sync.dart.
88+ // Defining a class with the same name here would cause a duplicate export.
8989// class Sync {
9090// const Sync();
9191// }
0 commit comments