Skip to content

Commit

Permalink
sync
Browse files Browse the repository at this point in the history
  • Loading branch information
AtomicSponge committed Nov 18, 2024
1 parent 4e0d864 commit f47a0bc
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions include/silvergun/mgr/messages.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,6 @@ class messages final : private manager<messages> {
if (ch == '\0') break; // End loop if null terminated.
if (ch == EOF) {
throw engine_exception("Bad message file format!", "Messages", 2);
return;
}
sys += ch;
}
Expand All @@ -133,7 +132,6 @@ class messages final : private manager<messages> {
if (ch == '\0') break; // End loop if null terminated.
if (ch == EOF) {
throw engine_exception("Bad message file format!", "Messages", 2);
return;
}
to += ch;
}
Expand All @@ -142,7 +140,6 @@ class messages final : private manager<messages> {
if (ch == '\0') break; // End loop if null terminated.
if (ch == EOF) {
throw engine_exception("Bad message file format!", "Messages", 2);
return;
}
from += ch;
}
Expand All @@ -151,7 +148,6 @@ class messages final : private manager<messages> {
if (ch == '\0') break; // End loop if null terminated.
if (ch == EOF) {
throw engine_exception("Bad message file format!", "Messages", 2);
return;
}
cmd += ch;
}
Expand All @@ -160,7 +156,6 @@ class messages final : private manager<messages> {
if (ch == '\0') break; // End loop if null terminated.
if (ch == EOF) {
throw engine_exception("Bad message file format!", "Messages", 2);
return;
}
args += ch;
}
Expand Down

0 comments on commit f47a0bc

Please sign in to comment.