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

« back to all changes in this revision

Viewing changes to org/xbill/DNS/Master.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:
292
292
                token = st.get(true, false);
293
293
                if (token.type == Tokenizer.WHITESPACE) {
294
294
                        Tokenizer.Token next = st.get();
295
 
                        if (token.type == Tokenizer.EOL)
 
295
                        if (next.type == Tokenizer.EOL)
296
296
                                continue;
297
 
                        else if (token.type == Tokenizer.EOF)
 
297
                        else if (next.type == Tokenizer.EOF)
298
298
                                return null;
299
299
                        else
300
300
                                st.unget();