All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jxmapviewer.cache.NoOpLocalCache Maven / Gradle / Ivy

There is a newer version: 2.8
Show newest version
package org.jxmapviewer.cache;

import java.io.InputStream;
import java.net.URL;

/**
 * A dummy implementation that does nothing
 */
public class NoOpLocalCache implements LocalCache {

    @Override
    public InputStream get(URL url) {
        return null;
    }

    @Override
    public void put(URL url, InputStream data) {
        // do nothing
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy