removed deprecated flags completely

This commit is contained in:
Václav Šmejkal 2022-05-20 18:30:36 +02:00
parent 95684006ac
commit 2440440353
2 changed files with 0 additions and 24 deletions

View File

@ -42,12 +42,8 @@ static int noOutput = 0; //BOOLEAN FOR NOT PRINTING OUTPUT WHEN ENCRYPTING/DECRY
//GETTERS
int getKeyLength();
DEPRECATED int getSkipCheck();
DEPRECATED int getNoOutput();
//SETTERS
void setKeyLength(int keyLengthNew);
DEPRECATED void setSkipCheck(int skipCheckNew);
DEPRECATED void setNoOutput(int noOutputNew);
#endif

View File

@ -1,15 +1,5 @@
#include <why2/flags.h>
int getSkipCheck()
{
return skipCheck;
}
void setSkipCheck(int skipCheckNew)
{
skipCheck = skipCheckNew;
}
int getKeyLength()
{
return keyLength;
@ -19,13 +9,3 @@ void setKeyLength(int keyLengthNew)
{
keyLength = keyLengthNew;
}
int getNoOutput()
{
return noOutput;
}
void setNoOutput(int noOutputNew)
{
noOutput = noOutputNew;
}