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 //GETTERS
int getKeyLength(); int getKeyLength();
DEPRECATED int getSkipCheck();
DEPRECATED int getNoOutput();
//SETTERS //SETTERS
void setKeyLength(int keyLengthNew); void setKeyLength(int keyLengthNew);
DEPRECATED void setSkipCheck(int skipCheckNew);
DEPRECATED void setNoOutput(int noOutputNew);
#endif #endif

View File

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