Skip to content

Commit 5f56703

Browse files
committed
Make encode method's static
1 parent d739407 commit 5f56703

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/URLEncoder.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ class URLEncoderClass
1313
URLEncoderClass();
1414
virtual ~URLEncoderClass();
1515

16-
String encode(const char* str);
17-
String encode(const String& str);
16+
static String encode(const char* str);
17+
static String encode(const String& str);
1818

1919
private:
20-
String encode(const char* str, int length);
20+
static String encode(const char* str, int length);
2121
};
2222

2323
extern URLEncoderClass URLEncoder;

0 commit comments

Comments
 (0)