Index: lib/uri/helpers.dart |
diff --git a/lib/uri/helpers.dart b/lib/uri/helpers.dart |
index b23cdb8598f2645f9a964f2ffa7e1c437dd4be3c..bcc1e5677aa78bbe9126a0d22615627c6784060a 100644 |
--- a/lib/uri/helpers.dart |
+++ b/lib/uri/helpers.dart |
@@ -13,7 +13,7 @@ String removeDotSegments(String path) { |
for (String segment in path.split("/")) { |
appendSlash = false; |
if (segment == "..") { |
- if (!output.isEmpty() && |
+ if (!output.isEmpty && |
((output.length != 1) || (output[0] != ""))) output.removeLast(); |
appendSlash = true; |
} else if ("." == segment) { |