Imported GNU Classpath 0.19 + gcj-import-20051115.

* sources.am: Regenerated.
       * Makefile.in: Likewise.
       * scripts/makemake.tcl: Use glob -nocomplain.

From-SVN: r107049
This commit is contained in:
Mark Wielaard
2005-11-15 23:20:01 +00:00
parent 02e549bfaa
commit 8f523f3a10
1241 changed files with 97711 additions and 25284 deletions
+3 -3
View File
@@ -53,14 +53,14 @@ public class gnuNVList
/**
* The list of the named values.
*/
protected corbaArrayList list;
protected CorbaList list;
/**
* Creates the list with the default initial size.
*/
public gnuNVList()
{
list = new corbaArrayList();
list = new CorbaList();
}
/**
@@ -68,7 +68,7 @@ public class gnuNVList
*/
public gnuNVList(int initial_size)
{
list = new corbaArrayList(initial_size);
list = new CorbaList(initial_size);
}
/** {@inheritDoc} */