Jack Orenstein
Jack Orenstein
I am using PayloadBuilder to create a notification, and everything works: PayloadBuilder builder = APNS.newPayload().alertTitle(title) push(deviceToken, builder.build()); I recently added custom fields: builder.customFields(customFields); The notification arrives on my iPhone without...
This was discovered while moving FoundationDB to geophile 2.0.1. See SpaceTest.testLatLonDecomposition(). The box that got into trouble is Box(70, 90, 40, 90), (latitude 70 : 90, longitude 40 : 90)....
This was reported by Hiroshi Ukai, using JCUnit. Here is the stack: java.lang.ArrayIndexOutOfBoundsException: -1 at com.geophile.z.space.Region.up(Region.java:100) at com.geophile.z.space.SpaceImpl.decompose(SpaceImpl.java:93) at com.geophile.z.space.DecompositionTest.testBoxNotContainedInSpace(DecompositionTest.java:93) This is not surprising, as SpatialObject's aren't checked for containment...
The following test (added to SelfJoinTest) finds only one pair of spatial objects, (1, 1), with EXCLUDE. With INCLUDE instead, it finds all four combinatins, (0, 0), (0, 1), (1,...