diff options
author | LennyMcLennington <28272981+LennyMcLennington@users.noreply.github.com> | 2022-01-17 03:56:27 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-17 03:56:27 +0000 |
commit | 2c2c22ccf8567de0410decdd6ef122170c70103f (patch) | |
tree | d898fa78f0e344121327cdd8325171ef58f71605 /launcher/minecraft/auth/flows/Offline.cpp | |
parent | 0bc8baf1172d6967cdb2993826e3469ecd9aab66 (diff) | |
parent | 55597b458ced4d7ad8082ab226617ba48e177ee6 (diff) | |
download | PrismLauncher-2c2c22ccf8567de0410decdd6ef122170c70103f.tar.gz PrismLauncher-2c2c22ccf8567de0410decdd6ef122170c70103f.tar.bz2 PrismLauncher-2c2c22ccf8567de0410decdd6ef122170c70103f.zip |
Merge pull request #82 from PolyMC/revert-offline-mode
Revert offline mode support (#81 and #50)
Diffstat (limited to 'launcher/minecraft/auth/flows/Offline.cpp')
-rw-r--r-- | launcher/minecraft/auth/flows/Offline.cpp | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/launcher/minecraft/auth/flows/Offline.cpp b/launcher/minecraft/auth/flows/Offline.cpp deleted file mode 100644 index fc614a8c..00000000 --- a/launcher/minecraft/auth/flows/Offline.cpp +++ /dev/null @@ -1,17 +0,0 @@ -#include "Offline.h" - -#include "minecraft/auth/steps/OfflineStep.h" - -OfflineRefresh::OfflineRefresh( - AccountData *data, - QObject *parent -) : AuthFlow(data, parent) { - m_steps.append(new OfflineStep(m_data)); -} - -OfflineLogin::OfflineLogin( - AccountData *data, - QObject *parent -) : AuthFlow(data, parent) { - m_steps.append(new OfflineStep(m_data)); -} |