Patch: FYI: comment fixes

Tom Tromey tromey@redhat.com
Wed Feb 2 16:19:00 GMT 2005


I'm checking this in.

This fixes an incorrect comment pointed out by Mark, and it also
fixes a typo I happened across.

Tom

Index: ChangeLog
from  Tom Tromey  <tromey@redhat.com>

	* gnu/gcj/runtime/PersistentByteMap.java: Fixed typo.
	* prims.cc: Fixed comment.

Index: prims.cc
===================================================================
RCS file: /cvs/gcc/gcc/libjava/prims.cc,v
retrieving revision 1.101
diff -u -r1.101 prims.cc
--- prims.cc 10 Jan 2005 19:39:25 -0000 1.101
+++ prims.cc 2 Feb 2005 16:18:02 -0000
@@ -964,8 +964,7 @@
   // 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();
Index: gnu/gcj/runtime/PersistentByteMap.java
===================================================================
RCS file: /cvs/gcc/gcc/libjava/gnu/gcj/runtime/PersistentByteMap.java,v
retrieving revision 1.2
diff -u -r1.2 PersistentByteMap.java
--- gnu/gcj/runtime/PersistentByteMap.java 25 Nov 2004 03:46:59 -0000 1.2
+++ gnu/gcj/runtime/PersistentByteMap.java 2 Feb 2005 16:18:03 -0000
@@ -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 @@
 /*  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



More information about the Java-patches mailing list