diff options
author | Teddy Wing | 2017-08-02 00:24:50 +0200 |
---|---|---|
committer | Teddy Wing | 2017-08-02 00:24:50 +0200 |
commit | 2fb79b3ddf26cb099bc4a5daebeb873d77989516 (patch) | |
tree | fe110f348e5577e1afb15d82a908fd3029b3ad49 | |
parent | e40b06ecefe4f2246ea78d90433c3a09a7aebe6a (diff) | |
download | sorbot-2fb79b3ddf26cb099bc4a5daebeb873d77989516.tar.bz2 |
Plugin/Base.hs: Remove duplicated exports
When I added the `Plugin(..)` export, I didn't think to remove the
exports for the functions created by the Plugin record data type. Didn't
see the warnings from the compiler when building until now.
-rw-r--r-- | src/Plugin/Base.hs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/Plugin/Base.hs b/src/Plugin/Base.hs index c73ef6a..329c21a 100644 --- a/src/Plugin/Base.hs +++ b/src/Plugin/Base.hs @@ -2,8 +2,6 @@ module Plugin.Base ( PluginAction , Plugin(..) - , matchRegex - , perform ) where type PluginAction = String -> String |