Skip to content

Commit cdb9277

Browse files
author
chenenyu
committed
del log statement
1 parent 1649a68 commit cdb9277

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

router/src/main/java/com/chenenyu/router/UrlMatcher.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
import android.net.Uri;
44
import android.os.Bundle;
5-
import android.util.Log;
65

76
import java.util.HashMap;
87
import java.util.Map;
@@ -57,14 +56,11 @@ public boolean match(Uri uri, String path, RouteOptions routeOptions) {
5756
// parse entry from given uri.
5857
Map<String, String> params = new HashMap<>();
5958
parseParams(params, uri.getQuery());
60-
Log.d("UrlMatcher", "uri.getQuery(): " + uri.getQuery());
61-
Log.d("UrlMatcher", "params: " + params);
6259

6360
String[] placeholders = route.getQuery().split("&");
6461
for (String placeholder : placeholders) {
6562
if (placeholder.startsWith("{") && placeholder.endsWith("}")) {
6663
placeholder = placeholder.substring(1, placeholder.length() - 1);
67-
Log.d("UrlMatcher", "placeholder: " + placeholder);
6864
if (params.containsKey(placeholder)) {
6965
Bundle bundle = routeOptions.getBundle();
7066
if (bundle == null) {

0 commit comments

Comments
 (0)