~ubuntu-branches/ubuntu/wily/dnsjava/wily-proposed

« back to all changes in this revision

Viewing changes to org/xbill/DNS/Client.java

  • Committer: Bazaar Package Importer
  • Author(s): Chris Grzegorczyk, moeller at d
  • Date: 2009-12-17 01:08:10 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20091217010810-he589osm73wkrvi4
Tags: 2.0.8-1
* Port package to pkg-java based largely on existing Ubuntu package.
[ by sponsor moeller@d.o ]
* New upstream version (Closes: #562199).
* Disabled checks because of issue with byteArrayToString().

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
        try {
21
21
                selector = Selector.open();
22
22
                channel.configureBlocking(false);
23
 
                key = channel.register(selector, 0);
 
23
                key = channel.register(selector, SelectionKey.OP_READ);
24
24
                done = true;
25
25
        }
26
26
        finally {