@@ -40,8 +40,8 @@ public Node find(String query) {
4040 // TODO: Remove old style lookup queries
4141 // Use TestFX lookup for queries with no prefixes
4242 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.");
4545 return robot .lookup (query ).query ();
4646 }
4747
@@ -63,8 +63,8 @@ public Node find(String query, Parent root) {
6363 // TODO: Remove old style lookup queries
6464 // Use TestFX lookup for queries with no prefixes
6565 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.");
6868 return robot .from (root ).lookup (query ).query ();
6969 }
7070
@@ -97,8 +97,8 @@ public Set<Node> findAll(String query) {
9797 // TODO: Remove old style lookup queries
9898 // Use TestFX lookup for queries with no prefixes
9999 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.");
102102 return robot .lookup (query ).queryAll ();
103103 }
104104
@@ -116,8 +116,8 @@ public Set<Node> findAll(String query, Parent root) {
116116 // TODO: Remove old style lookup queries
117117 // Use TestFX lookup for queries with no prefixes
118118 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.");
121121 return robot .from (root ).lookup (query ).query ();
122122 }
123123
0 commit comments