redraw_fixer: a couple of style fixes
[staging/windowmanager.git] / src / json_helper.hpp
index 68aaa08..15d72c3 100644 (file)
@@ -27,14 +27,4 @@ json_object *to_json(genivi::screen const *s);
 json_object *to_json(genivi::controller::props_map const &s);
 json_object *to_json(std::vector<uint32_t> const &v);
 
-// We ned to manually unwrap numbers
-template <typename T>
-wm::result<T> get(nlohmann::json const &j) {
-   // DB(j);
-   T r;
-   std::istringstream s(j.get<std::string>());
-   s >> r;
-   return !s.eof() || s.fail() ? wm::Err<T>("Could not read int") : wm::Ok(r);
-}
-
 #endif  // TMCAGLWM_JSON_HELPER_HPP