@@ -40,8 +40,8 @@ public Node find(String query) {
40
40
// TODO: Remove old style lookup queries
41
41
// Use TestFX lookup for queries with no prefixes
42
42
if (!QueryParser .startsWithPrefix (query )) {
43
- RobotLog .warn ("You are using deprecated lookup queries! See library documentation for information about " +
44
- "the updated lookup query syntax." );
43
+ // RobotLog.warn("You are using deprecated lookup queries! See library documentation for information about " +
44
+ // "the updated lookup query syntax.");
45
45
return robot .lookup (query ).query ();
46
46
}
47
47
@@ -63,8 +63,8 @@ public Node find(String query, Parent root) {
63
63
// TODO: Remove old style lookup queries
64
64
// Use TestFX lookup for queries with no prefixes
65
65
if (!QueryParser .startsWithPrefix (query )) {
66
- RobotLog .warn ("You are using deprecated lookup queries! See library documentation for information about " +
67
- "the updated lookup query syntax." );
66
+ // RobotLog.warn("You are using deprecated lookup queries! See library documentation for information about " +
67
+ // "the updated lookup query syntax.");
68
68
return robot .from (root ).lookup (query ).query ();
69
69
}
70
70
@@ -97,8 +97,8 @@ public Set<Node> findAll(String query) {
97
97
// TODO: Remove old style lookup queries
98
98
// Use TestFX lookup for queries with no prefixes
99
99
if (!QueryParser .startsWithPrefix (query )) {
100
- RobotLog .warn ("You are using deprecated lookup queries! See library documentation for information about " +
101
- "the updated lookup query syntax." );
100
+ // RobotLog.warn("You are using deprecated lookup queries! See library documentation for information about " +
101
+ // "the updated lookup query syntax.");
102
102
return robot .lookup (query ).queryAll ();
103
103
}
104
104
@@ -116,8 +116,8 @@ public Set<Node> findAll(String query, Parent root) {
116
116
// TODO: Remove old style lookup queries
117
117
// Use TestFX lookup for queries with no prefixes
118
118
if (!QueryParser .startsWithPrefix (query )) {
119
- RobotLog .warn ("You are using deprecated lookup queries! See library documentation for information about " +
120
- "the updated lookup query syntax." );
119
+ // RobotLog.warn("You are using deprecated lookup queries! See library documentation for information about " +
120
+ // "the updated lookup query syntax.");
121
121
return robot .from (root ).lookup (query ).query ();
122
122
}
123
123
0 commit comments