]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
PersistentByteMap.java: Fixed typo.
authorTom Tromey <tromey@redhat.com>
Wed, 2 Feb 2005 16:19:45 +0000 (16:19 +0000)
committerTom Tromey <tromey@gcc.gnu.org>
Wed, 2 Feb 2005 16:19:45 +0000 (16:19 +0000)
* gnu/gcj/runtime/PersistentByteMap.java: Fixed typo.
* prims.cc: Fixed comment.

From-SVN: r94592

libjava/ChangeLog
libjava/gnu/gcj/runtime/PersistentByteMap.java
libjava/prims.cc

index 83dcba4323d7f0e7ed5a24ff86016f085b59bd05..4ee35337ce18495cf35f408d9007074fdcbed29a 100644 (file)
@@ -1,3 +1,8 @@
+2005-02-02  Tom Tromey  <tromey@redhat.com>
+
+       * gnu/gcj/runtime/PersistentByteMap.java: Fixed typo.
+       * prims.cc: Fixed comment.
+
 2005-02-01  Tom Tromey  <tromey@redhat.com>
 
        * Makefile.in: Rebuilt.
index 90b7d33a8f4eda8524d1925b32ab75fba3105d6e..230d78585761f216a89632694b1f38ce1b16e3d4 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 2004  Free Software Foundation
+/* Copyright (C) 2004, 2005  Free Software Foundation
 
    This file is part of libgcj.
 
@@ -11,7 +11,7 @@ details.  */
 /*  A PersistentByteMap maps a byte array to another byte array.  It
 uses a file that does not need to be serialized but may be
 memory-mapped and read in-place.  So, even if there are many instances
-of gcj applications running, the can share PersistentByteMaps.
+of gcj applications running, they can share PersistentByteMaps.
 
 The idea is to make searches as fast as possible: opening a
 PersistentByteMap is cheap and search time doesn't grow with the
index ac48d0dd9e3b32564eff4001dfc5e3b9bdd392eb..c3c07d9f5e5b377d93e81d134d6c099e110ee28e 100644 (file)
@@ -964,8 +964,7 @@ _Jv_CreateJavaVM (void* /*vm_args*/)
   // of VMClassLoader.
   _Jv_InitClass (&java::lang::ClassLoader::class$);
 
-  // Once the bootstrap loader is in place, change it into a kind of
-  // system loader, by having it read the class path.
+  // Set up the system class loader.
   gnu::gcj::runtime::VMClassLoader::initialize();
 
   _Jv_RegisterBootstrapPackages();