On Thu, Sep 6, 2012 at 8:55 AM, Rich Johns <ridge.h
...@gmail.com> wrote:
> another case of the same thing on line 260:
> *if (!HttpResponse.isSuccessStatusCode(p.batchStatus.code)) {*
> *
> *
> should be
> *if (!HttpStatusCodes.isSuccess(p.batchStatus.code)) {*
> *
> *
> Sorry for the piecemeal reporting, I'm actually reworking the sample into
> a layer that better suits our architecture so I am not compiling the actual
> sample code. Awesome to have this sample though, and once again much
> obliged to google content api for shopping team.
> On Thursday, September 6, 2012 10:01:52 AM UTC-5, Rich Johns wrote:
>> Just an FYI for java developers, In the jar set I downloaded ~ a week
>> ago the WorkerThread.java file at line 210 uses the following line of code:
>> * if (HttpResponse.isSuccessStatusCode(response.getStatusCode())) {*
>> but should be:
>> *if (response.isSuccessStatusCode()) {*
>> *
>> *
>> *or *
>> *
>> *
>> * if (HttpStatusCodes.isSuccess(response.getStatusCode())) {**
>> *
> --
> You received this message because you are subscribed to the Google Groups
> "Google Content API for Shopping" group.
> To view this discussion on the web visit
> https://groups.google.com/d/msg/google-content-api-for-shopping/-/HlY...
> .
> To post to this group, send email to
> google-content-api-for-shopping@googlegroups.com.
> To unsubscribe from this group, send email to
> google-content-api-for-shopping+unsubscribe@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/google-content-api-for-shopping?hl=en.