Ignore:
Timestamp:
Apr 27, 2004, 8:39:34 PM (22 years ago)
Author:
bird
Message:

GCC v3.3.3 sources.

Location:
branches/GNU/src/gcc
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/GNU/src/gcc

    • Property svn:ignore
      •  

        old new  
        2626configure.vr
        2727configure.vrs
         28
        2829Makefile
        29 dir.info
        3030lost+found
        3131update.out
  • branches/GNU/src/gcc/libjava/java/text/ChoiceFormat.java

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.1.1.2
    r1390 r1391  
    11/* ChoiceFormat.java -- Format over a range of numbers
    2    Copyright (C) 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
     2   Copyright (C) 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
    33
    44This file is part of GNU Classpath.
     
    5353 * explaining it.  Consider the following example:
    5454 * <p>
    55  * <pre>
    56  * terminators = { 1, ChoiceFormat.nextDouble(1) }
    57  * formats = { "file", "files" }
    58  * </pre>
     55 *
     56terminators = { 1, ChoiceFormat.nextDouble(1) }
     57formats = { "file", "files" }</pre>
     58 *
    5959 * <p>
    6060 * In this case if the actual number tested is one or less, then the word
     
    260260      return appendBuf;
    261261
    262     int index =  0;
     262    int index = 0;
    263263    if (! Double.isNaN(num) && num >= choiceLimits[0])
    264264      {
    265265        for (; index < choiceLimits.length - 1; ++index)
    266266          {
    267             if (choiceLimits[index] <= num
    268                 && index != choiceLimits.length - 2
    269                 && num < choiceLimits[index + 1])
     267            if (choiceLimits[index] <= num && num < choiceLimits[index + 1])
    270268              break;
    271269          }
Note: See TracChangeset for help on using the changeset viewer.