From bd31b1ac8484f74d599e37f3c8f8705a62799205 Mon Sep 17 00:00:00 2001 From: Patrick Cronin Date: Wed, 28 Sep 2016 09:30:49 -0500 Subject: [PATCH 1/5] Added note about isPostalInCity for USA addresses. --- .../java/com/maxmind/minfraud/response/AbstractAddress.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/maxmind/minfraud/response/AbstractAddress.java b/src/main/java/com/maxmind/minfraud/response/AbstractAddress.java index 8a637464..b1615ef3 100644 --- a/src/main/java/com/maxmind/minfraud/response/AbstractAddress.java +++ b/src/main/java/com/maxmind/minfraud/response/AbstractAddress.java @@ -58,8 +58,8 @@ public final Integer getDistanceToIpLocation() { /** * @return This will return true if the postal code provided with the * address is in the city for the address. It will return false when the - * postal code is not in the city. If the address could not be parsed or - * was not provided, the null will be returned. + * postal code is not in the city. If the address was not provided, + * could not be parsed or was not in the USA, null will be returned. */ @JsonProperty("is_postal_in_city") public final Boolean isPostalInCity() { From d0f7193b7e4123d13792f88ae98feafbc95bbbd5 Mon Sep 17 00:00:00 2001 From: Patrick Cronin Date: Wed, 28 Sep 2016 09:35:17 -0500 Subject: [PATCH 2/5] Fix link --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 560bd614..a17b06c8 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ ## Description ## This package provides an API for the [MaxMind minFraud Score, Insights, and -Factors web services](http://dev.maxmind.com/minfraud-score-and-insights-api-documentation). +Factors web services](http://dev.maxmind.com/minfraud/). ## Installation ## From 0e5ac84b27c6286917bb4b14ba7c9e205251a7a5 Mon Sep 17 00:00:00 2001 From: Patrick Cronin Date: Wed, 28 Sep 2016 17:20:49 -0400 Subject: [PATCH 3/5] Fix link protocol --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a17b06c8..197c12dd 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ ## Description ## This package provides an API for the [MaxMind minFraud Score, Insights, and -Factors web services](http://dev.maxmind.com/minfraud/). +Factors web services](https://dev.maxmind.com/minfraud/). ## Installation ## From a68fc3031c45e64f3cc32a407f2930df085570fd Mon Sep 17 00:00:00 2001 From: Patrick Cronin Date: Thu, 29 Sep 2016 09:18:35 -0500 Subject: [PATCH 4/5] Grammar fix --- .../java/com/maxmind/minfraud/response/AbstractAddress.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/maxmind/minfraud/response/AbstractAddress.java b/src/main/java/com/maxmind/minfraud/response/AbstractAddress.java index b1615ef3..75ca7819 100644 --- a/src/main/java/com/maxmind/minfraud/response/AbstractAddress.java +++ b/src/main/java/com/maxmind/minfraud/response/AbstractAddress.java @@ -59,7 +59,7 @@ public final Integer getDistanceToIpLocation() { * @return This will return true if the postal code provided with the * address is in the city for the address. It will return false when the * postal code is not in the city. If the address was not provided, - * could not be parsed or was not in the USA, null will be returned. + * could not be parsed or was not in USA, null will be returned. */ @JsonProperty("is_postal_in_city") public final Boolean isPostalInCity() { From 8d13b0d76f15864325fd9ac646dba2bed5a905b7 Mon Sep 17 00:00:00 2001 From: Patrick Cronin Date: Thu, 29 Sep 2016 10:38:29 -0400 Subject: [PATCH 5/5] Add Oxford comma --- .../java/com/maxmind/minfraud/response/AbstractAddress.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/maxmind/minfraud/response/AbstractAddress.java b/src/main/java/com/maxmind/minfraud/response/AbstractAddress.java index 75ca7819..68989c50 100644 --- a/src/main/java/com/maxmind/minfraud/response/AbstractAddress.java +++ b/src/main/java/com/maxmind/minfraud/response/AbstractAddress.java @@ -59,7 +59,7 @@ public final Integer getDistanceToIpLocation() { * @return This will return true if the postal code provided with the * address is in the city for the address. It will return false when the * postal code is not in the city. If the address was not provided, - * could not be parsed or was not in USA, null will be returned. + * could not be parsed, or was not in USA, null will be returned. */ @JsonProperty("is_postal_in_city") public final Boolean isPostalInCity() {