summaryrefslogtreecommitdiffstats
path: root/lib/domain/libimagcounter/src/result.rs
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2017-09-03 21:39:32 +0200
committerMatthias Beyer <mail@beyermatthias.de>2017-09-04 09:19:29 +0200
commit18e806f588a2917ba21d289e93216edd3d6c801e (patch)
treefd7f5082b90d74693c470131c09ab192a07149d8 /lib/domain/libimagcounter/src/result.rs
parente9ed4dfcab399b9af5b53b85f41476fb9cc21df5 (diff)
Remove dedicated result modules, use error chain generated Result types
Diffstat (limited to 'lib/domain/libimagcounter/src/result.rs')
-rw-r--r--lib/domain/libimagcounter/src/result.rs25
1 files changed, 0 insertions, 25 deletions
diff --git a/lib/domain/libimagcounter/src/result.rs b/lib/domain/libimagcounter/src/result.rs
deleted file mode 100644
index e24b90c9..00000000
--- a/lib/domain/libimagcounter/src/result.rs
+++ /dev/null
@@ -1,25 +0,0 @@
-//
-// imag - the personal information management suite for the commandline
-// Copyright (C) 2015, 2016 Matthias Beyer <mail@beyermatthias.de> and contributors
-//
-// This library is free software; you can redistribute it and/or
-// modify it under the terms of the GNU Lesser General Public
-// License as published by the Free Software Foundation; version
-// 2.1 of the License.
-//
-// This library is distributed in the hope that it will be useful,
-// but WITHOUT ANY WARRANTY; without even the implied warranty of
-// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-// Lesser General Public License for more details.
-//
-// You should have received a copy of the GNU Lesser General Public
-// License along with this library; if not, write to the Free Software
-// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
-//
-
-use std::result::Result as RResult;
-
-use error::CounterError;
-
-pub type Result<T> = RResult<T, CounterError>;
-