diff options
author | bexnoss <82064510+bexnoss@users.noreply.github.com> | 2022-01-12 18:41:33 +0100 |
---|---|---|
committer | bexnoss <82064510+bexnoss@users.noreply.github.com> | 2022-01-12 18:41:33 +0100 |
commit | 46a3b4de6ebb625b958a69aba85316171d3fa168 (patch) | |
tree | fd94e2ffb8db704b427bafb43bbf88f8e70318c5 | |
parent | 6ecc8c5496cd1fa121b69f770c0664320fd7dc1d (diff) | |
download | PrismLauncher-46a3b4de6ebb625b958a69aba85316171d3fa168.tar.gz PrismLauncher-46a3b4de6ebb625b958a69aba85316171d3fa168.tar.bz2 PrismLauncher-46a3b4de6ebb625b958a69aba85316171d3fa168.zip |
Remove unnecessary semicolon
-rw-r--r-- | launcher/minecraft/auth/steps/OfflineStep.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/launcher/minecraft/auth/steps/OfflineStep.cpp b/launcher/minecraft/auth/steps/OfflineStep.cpp index 9f1fc266..dc092bfd 100644 --- a/launcher/minecraft/auth/steps/OfflineStep.cpp +++ b/launcher/minecraft/auth/steps/OfflineStep.cpp @@ -2,7 +2,7 @@ #include "Application.h" -OfflineStep::OfflineStep(AccountData* data) : AuthStep(data) {}; +OfflineStep::OfflineStep(AccountData* data) : AuthStep(data) {} OfflineStep::~OfflineStep() noexcept = default; QString OfflineStep::describe() { |