diff options
author | simonpj <unknown> | 2000-11-07 13:12:24 +0000 |
---|---|---|
committer | simonpj <unknown> | 2000-11-07 13:12:24 +0000 |
commit | 01e0566e61e4222600c7ba0a2d35d6102fd1afb5 (patch) | |
tree | 8d410d673a7b07378a3272fcbf1240d2b01e6161 /ghc/compiler/javaGen | |
parent | f5448f5c5efe0630cb865ee0d21691a23ea932d3 (diff) | |
download | haskell-01e0566e61e4222600c7ba0a2d35d6102fd1afb5.tar.gz |
[project @ 2000-11-07 13:12:21 by simonpj]
More small changes
Diffstat (limited to 'ghc/compiler/javaGen')
-rw-r--r-- | ghc/compiler/javaGen/PrintJava.lhs | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/ghc/compiler/javaGen/PrintJava.lhs b/ghc/compiler/javaGen/PrintJava.lhs index edaf8e594f..eb2811d38f 100644 --- a/ghc/compiler/javaGen/PrintJava.lhs +++ b/ghc/compiler/javaGen/PrintJava.lhs @@ -81,11 +81,6 @@ clazz = \mfs -> \n -> \x -> \is -> \ms -> $$ indent ms $$ text "}" -staticblock = \ss -> - text "static" <+> text "{" - $$ indent ss - $$ text "}" - modifiers mfs = hsep (map modifier mfs) modifier mf = text $ map toLower (show mf) |