summaryrefslogtreecommitdiff
path: root/src/runtime/haskell/PGF/Morphology.hs
diff options
context:
space:
mode:
Diffstat (limited to 'src/runtime/haskell/PGF/Morphology.hs')
-rw-r--r--src/runtime/haskell/PGF/Morphology.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/runtime/haskell/PGF/Morphology.hs b/src/runtime/haskell/PGF/Morphology.hs
index be786ebbb..c77aa1735 100644
--- a/src/runtime/haskell/PGF/Morphology.hs
+++ b/src/runtime/haskell/PGF/Morphology.hs
@@ -20,7 +20,7 @@ newtype Morpho = Morpho (Map.Map String [(Lemma,Analysis)])
buildMorpho :: PGF -> Language -> Morpho
buildMorpho pgf lang = Morpho $
- case Map.lookup lang (concretes pgf) >>= parser of
+ case Map.lookup lang (concretes pgf) of
Just pinfo -> collectWords pinfo
Nothing -> Map.empty