Skip to content

Commit c7821a7

Browse files
authored
Merge pull request #19 from Geumpumta/wifi
fix : 오타로 인한 컴파일 오류 해결
2 parents 4743fa0 + 761cf76 commit c7821a7

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/main/java/com/gpt/geumpumtabackend/wifi/config/CampusWiFiProperties.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import lombok.extern.slf4j.Slf4j;
44
import org.apache.commons.net.util.SubnetUtils;
55
import org.springframework.boot.context.properties.ConfigurationProperties;
6-
import org.springframework.boot.context.properties.bind.ConstructorBinding;
6+
77

88
import java.util.List;
99

@@ -34,7 +34,6 @@ public record WiFiNetwork(String name,
3434
public boolean isValidGatewayIP(String gatewayIp) {
3535
return this.gatewayIp != null && this.gatewayIp.equals(gatewayIp);
3636
}
37-
}
3837

3938
public boolean isValidBSSID(String bssid) {
4039
return bssids.contains(bssid);

0 commit comments

Comments
 (0)