This repository has been archived by the owner. It is now read-only.
Permalink
Browse files

#5617 Remove online check for plugins

  • Loading branch information...
nlyan committed Sep 27, 2016
1 parent 5f5153f commit c3889667ba3a0b3a52db4e6a239c55642430fee3
Showing with 0 additions and 13 deletions.
  1. +0 −13 src/lib/synergy/ToolApp.cpp
@@ -174,19 +174,6 @@ ToolApp::loginAuth()
void
ToolApp::getPluginList()
{
- String credentials;
- std::cin >> credentials;
-
- size_t separator = credentials.find(':');
- String email = credentials.substr(0, separator);
- String password = credentials.substr(separator + 1, credentials.length());
-
- std::stringstream ss;
- ss << JSON_URL << "plugins/";
- ss << "?email=" << ARCH->internet().urlEncode(email);
- ss << "&password=" << password;
-
- std::cout << ARCH->internet().get(ss.str()) << std::endl;
}
void

0 comments on commit c388966

Please sign in to comment.