diff options
author | Joey Hess <joey@kitenet.net> | 2013-10-29 13:41:44 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2013-10-29 13:41:44 -0400 |
commit | 2db78797ee58e53f06bd2d104fb203c45247e7c0 (patch) | |
tree | 3b8b7ab10eeb2cb8c787a6d57c1a03bb623ece6a /Assistant/Types | |
parent | 255354acc20f2680126b22cc02a0893d1d72d804 (diff) |
move code around and rename thread; no functional changes
Diffstat (limited to 'Assistant/Types')
-rw-r--r-- | Assistant/Types/RepoProblem.hs (renamed from Assistant/Types/RemoteProblem.hs) | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Assistant/Types/RemoteProblem.hs b/Assistant/Types/RepoProblem.hs index 539da3db9..40397c708 100644 --- a/Assistant/Types/RemoteProblem.hs +++ b/Assistant/Types/RepoProblem.hs @@ -5,14 +5,14 @@ - Licensed under the GNU GPL version 3 or higher. -} -module Assistant.Types.RemoteProblem where +module Assistant.Types.RepoProblem where import Types import Utility.TList import Control.Concurrent.STM -type RemoteProblemChan = TList Remote +type RepoProblemChan = TList UUID -newRemoteProblemChan :: IO RemoteProblemChan -newRemoteProblemChan = atomically newTList +newRepoProblemChan :: IO RepoProblemChan +newRepoProblemChan = atomically newTList |