~ubuntu-branches/ubuntu/utopic/jetty/utopic-proposed

« back to all changes in this revision

Viewing changes to modules/util/src/main/java/org/mortbay/util/ajax/JSON.java

  • Committer: Bazaar Package Importer
  • Author(s): Torsten Werner
  • Date: 2010-04-29 07:36:43 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20100429073643-eo2x6y2fit4m6o66
Tags: 6.1.24-2
* Set JAVA_HOME in d/rules to /usr/lib/jvm/default-java. (Closes: #578618,
  #579469)
* Fix the installation of jetty-util5.jar. (Closes: #569328)

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
import java.io.InputStream;
20
20
import java.io.Reader;
21
21
import java.lang.reflect.Array;
22
 
import java.lang.reflect.Constructor;
23
22
import java.util.ArrayList;
24
23
import java.util.Collection;
25
24
import java.util.Collections;
762
761
                    case 'u':
763
762
                        complete("undefined",source);
764
763
                        return null;
765
 
 
 
764
                    case 'N':
 
765
                        complete("NaN",source);
 
766
                        return null;
 
767
                        
766
768
                    case '/':
767
769
                        comment_state=1;
768
770
                        break;