diff options
-rw-r--r-- | gcc/java/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/java/class.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/java/ChangeLog b/gcc/java/ChangeLog index 39fe758..fa8fc0f 100644 --- a/gcc/java/ChangeLog +++ b/gcc/java/ChangeLog @@ -1,3 +1,7 @@ +2007-02-18 Kazu Hirata <kazu@codesourcery.com> + + * class.c: Fix a comment typo. + 2007-02-15 Sandra Loosemore <sandra@codesourcery.com> Brooks Moses <brooks.moses@codesourcery.com> Lee Millward <lee.millward@codesourcery.com> diff --git a/gcc/java/class.c b/gcc/java/class.c index 85cdeb4..c9ccef6 100644 --- a/gcc/java/class.c +++ b/gcc/java/class.c @@ -1008,7 +1008,7 @@ build_classdollar_field (tree type) return decl; } -/* Create a local variable that holds the the current class$. */ +/* Create a local variable that holds the current class$. */ void cache_this_class_ref (tree fndecl) |