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

org.apache.juli.logging.ch.qos.logback.core.joran.sanity.Pair Maven / Gradle / Ivy

There is a newer version: 10.1.23
Show newest version
package org.apache.juli.logging.ch.qos.logback.core.joran.sanity;

public class Pair {

    final public  F first;
    final public  S second;

    Pair(F first, S second) {
        this.first = first;
        this.second = second;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy