Changeset 8476


Ignore:
Timestamp:
2004-11-05T16:30:36+13:00 (19 years ago)
Author:
kjdon
Message:

made it compile with java 1.5

Location:
trunk/gsdl3/src/java/org/greenstone
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl3/src/java/org/greenstone/applet/phind/URLUTF8Encoder.java

    r3391 r8476  
    44 * URLUTF8Encoder.java -- encode UTF8 String into a URL form
    55 *
    6  * W3C® SOFTWARE NOTICE AND LICENSE
     6 * W3C SOFTWARE NOTICE AND LICENSE
    77 *
    8  * Copyright © 1994-2000 World Wide Web Consortium,
     8 * Copyright (C) 1994-2000 World Wide Web Consortium,
    99 * (Massachusetts Institute of Technology, Institut National de
    1010 * Recherche en Informatique et en Automatique, Keio University).
     
    2929 *      and conditions. If none exist, a short notice of the following form
    3030 *      (hypertext is preferred, text is permitted) should be used within the
    31  *      body of any redistributed or derivative code: "Copyright ©
     31 *      body of any redistributed or derivative code: "Copyright (C)
    3232 *      [$date-of-software] World Wide Web Consortium, (Massachusetts
    3333 *      Institute of Technology, Institut National de Recherche en
  • trunk/gsdl3/src/java/org/greenstone/gsdl3/gs3build/util/HTMLBlock.java

    r6285 r8476  
    271271   */
    272272  public Enumeration elements()
    273   { Enumeration enum;
     273  { Enumeration enumer;
    274274 
    275     enum = new HTMLBlockEnumerator(this);
    276     return enum;
     275    enumer = new HTMLBlockEnumerator(this);
     276    return enumer;
    277277  }
    278278
     
    281281   */
    282282  public Enumeration tagElements()
    283   { Enumeration enum;
    284 
    285     enum = new HTMLBlockTagEnumerator(this);
    286     return enum;
     283  { Enumeration enumer;
     284
     285    enumer = new HTMLBlockTagEnumerator(this);
     286    return enumer;
    287287  }
    288288
Note: See TracChangeset for help on using the changeset viewer.