aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Foundation/GTMURLBuilder.m4
1 files changed, 4 insertions, 0 deletions
diff --git a/Foundation/GTMURLBuilder.m b/Foundation/GTMURLBuilder.m
index 52ee12a..f948e0c 100644
--- a/Foundation/GTMURLBuilder.m
+++ b/Foundation/GTMURLBuilder.m
@@ -127,4 +127,8 @@
return YES;
}
+- (NSUInteger)hash {
+ return [baseURLString_ hash] * 17 + [params_ hash] * 37;
+}
+
@end