Skip to content

Commit e693c07

Browse files
committed
comment clean up
1 parent 075f5bd commit e693c07

File tree

3 files changed

+3
-12
lines changed

3 files changed

+3
-12
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@ To try out the demo code in this repository, follow these steps:
5151
(i.e. the file `test/test.g.dart`) and is necessary each time you add or change a class annotated with `@Entity(...)`.
5252
4. Finally run `pub run test` to run the unit tests.
5353

54-
Mac OS signed signed dart binary issue
55-
--------------------------------------
54+
Mac OS signed dart binary issue
55+
-------------------------------
5656

5757
If dart complains that it cannot find the `libobjectbox.dylib`, after you've installed by following step 1,
5858
then you probably have to unsign the dart binary:

lib/src/query/builder.dart

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,6 @@ class QueryBuilder<T> {
3333
}
3434

3535
/* // Not done yet
36-
// * = can't test, no support yet, for Double, Long, Boolean, Byte, or Vector... etc.
37-
* obx_qb_cond_operator_in_dart_t<Int64> obx_qb_int64_in, obx_qb_int64_not_in;
38-
* obx_qb_cond_operator_in_dart_t<Int32> obx_qb_int32_in, obx_qb_int32_not_in;
39-
* obx_qb_string_in_dart_t obx_qb_string_in;
40-
41-
* obx_qb_string_lt_gt_op_dart_t obx_qb_string_greater, obx_qb_string_less;
42-
4336
obx_qb_bytes_eq_dart_t obx_qb_bytes_equal;
4437
obx_qb_bytes_lt_gt_dart_t obx_qb_bytes_greater, obx_qb_bytes_less;
4538

test/query_test.dart

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -160,9 +160,7 @@ void main() {
160160
final q3 = box.query((text == "can't find this") as Condition).build();
161161
final result3 = q3.findIds();
162162

163-
// (result0 + result1 + result2).forEach((i) => print("found id: ${i}"));
164-
165-
expect(result0.length, 7); // TODO off by one bug?
163+
expect(result0.length, 7);
166164
expect(result2.length, 1);
167165
expect(result3.length, 0);
168166

0 commit comments

Comments
 (0)