~omry/gearman-java/reconnect-bug

« back to all changes in this revision

Viewing changes to src/main/java/org/gearman/client/GearmanJobResultImpl.java

  • Committer: Omry Yadan
  • Date: 2011-01-30 09:58:19 UTC
  • Revision ID: omry@buzz-20110130095819-v705dyobpu4f428y
fixed a few minor compilation warnings

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
    private byte[] handle;
18
18
    boolean succeeded = false;
19
19
 
20
 
    private GearmanJobResultImpl() {
21
 
    }
22
 
 
23
20
    public GearmanJobResultImpl(byte[] handle) {
24
21
        this(handle, false, null, null, null, -1, -1);
25
22
    }