aboutsummaryrefslogtreecommitdiff
path: root/gcc/java/gjavah.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/java/gjavah.c')
-rw-r--r--gcc/java/gjavah.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/gcc/java/gjavah.c b/gcc/java/gjavah.c
index 4c6d81d..3c04ebf 100644
--- a/gcc/java/gjavah.c
+++ b/gcc/java/gjavah.c
@@ -990,8 +990,7 @@ decode_signature_piece (stream, signature, limit, need_space)
while (*signature && *signature != ';')
{
int ch = UTF8_GET (signature, limit);
- /* `$' is the separator for an inner class. */
- if (ch == '/' || ch == '$')
+ if (ch == '/')
fputs ("::", stream);
else
jcf_print_char (stream, ch);