1
0
mirror of https://github.com/arduino/Arduino.git synced 2025-01-18 07:52:14 +01:00

Removed unnecessary invocation of Ethernet.maintain()

Since this example utilizes a statically assigned IP address, it is not necessary to call Ethernet.maintain().
This commit is contained in:
Michael Amie 2016-01-11 00:04:47 -08:00
parent 870171a69e
commit e6f85b7058

View File

@ -97,7 +97,6 @@ void loop() {
// close the connection:
client.stop();
Serial.println("client disconnected");
Ethernet.maintain();
}
}