flaw-editor/exe/editor.hs

Summary

Maintainability
Test Coverage

Use readTVarIO
Open

      exit <- atomically $ readTVar exitVar
Severity: Minor
Found in flaw-editor/exe/editor.hs by hlint

Found

atomically $ readTVar exitVar

Perhaps

readTVarIO exitVar

Use forM_
Open

          case maybeOldLayoutPanelChild of
            Just oldLayoutPanelChild -> removeFreeChild panel oldLayoutPanelChild
            Nothing -> return ()
Severity: Minor
Found in flaw-editor/exe/editor.hs by hlint

Found

case maybeOldLayoutPanelChild of
    Just oldLayoutPanelChild -> removeFreeChild panel
                                  oldLayoutPanelChild
    Nothing -> return ()

Perhaps

Data.Foldable.forM_ maybeOldLayoutPanelChild
  (removeFreeChild panel)

There are no issues that match your filters.

Category
Status