File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -81,10 +81,9 @@ namespace fossil {
81
81
* Sanitize input text by removing or replacing "rot-brain" and meme-based language.
82
82
*
83
83
* @param text The input text to sanitize.
84
- * @param censor_char Character to use for censoring (default: '*').
85
84
* @return A dynamically allocated sanitized string (must be freed by the caller).
86
85
*/
87
- static std::string sanitize (const std::string &text, char censor_char = ' * ' ) {
86
+ static std::string sanitize (const std::string &text) {
88
87
return fossil_io_soap_sanitize (text.c_str ());
89
88
}
90
89
@@ -130,10 +129,9 @@ namespace fossil {
130
129
* Sanitize input text by removing or replacing "rot-brain" and meme-based language.
131
130
*
132
131
* @param text The input text to sanitize.
133
- * @param censor_char Character to use for censoring (default: '*').
134
132
* @return A dynamically allocated sanitized string (must be freed by the caller).
135
133
*/
136
- static char * sanitize (const char * text, char censor_char = ' * ' ) {
134
+ static char * sanitize (const char * text) {
137
135
return fossil_io_soap_sanitize (text);
138
136
}
139
137
You can’t perform that action at this time.
0 commit comments