Skip to content

Commit bbb6033

Browse files
committed
Remove constructors for WiFiClient
1 parent deeab59 commit bbb6033

File tree

1 file changed

+0
-23
lines changed

1 file changed

+0
-23
lines changed

src/SnapClient.h

Lines changed: 0 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -69,29 +69,6 @@ class SnapClient {
6969
p_client = &client;
7070
}
7171

72-
//
73-
SnapClient(WiFiClient &client, AudioStream &stream, AudioDecoder &decoder)
74-
: SnapClient((Client &)client, stream, decoder) {
75-
is_wifi = true;
76-
}
77-
78-
SnapClient(WiFiClient &client, AudioStream &stream, StreamingDecoder &decoder,
79-
int bufferSize = CONFIG_STREAMIN_DECODER_BUFFER)
80-
: SnapClient((Client &)client, stream, decoder, bufferSize) {
81-
is_wifi = true;
82-
}
83-
84-
SnapClient(WiFiClient &client, AudioOutput &output, AudioDecoder &decoder)
85-
: SnapClient((Client &)client, output, decoder) {
86-
is_wifi = true;
87-
}
88-
89-
SnapClient(WiFiClient &client, AudioOutput &output, StreamingDecoder &decoder,
90-
int bufferSize = CONFIG_STREAMIN_DECODER_BUFFER)
91-
: SnapClient((Client &)client, output, decoder, bufferSize) {
92-
is_wifi = true;
93-
}
94-
9572
/// Destructor
9673
~SnapClient() { end(); }
9774

0 commit comments

Comments
 (0)