简体   繁体   中英

I'm stuck with this "Make this anonymous inner class a lambda"

builder.hostnameVerifier(new HostnameVerifier() {
    @Override
    public boolean verify(String hostname, SSLSession session) {
        return hostname!=null;
    }
});

I need help to refactor this code. I don't know from where to start. I've tried everything, but I find lambda expressions complicated.

HostnameVerifier hv =(String urlHostName, SSLSession session)-> {
    return hostname!=null;
};      

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM