Example usage for org.joda.time.chrono LenientChronology getInstance

List of usage examples for org.joda.time.chrono LenientChronology getInstance

Introduction

In this page you can find the example usage for org.joda.time.chrono LenientChronology getInstance.

Prototype

public static LenientChronology getInstance(Chronology base) 

Source Link

Document

Create a LenientChronology for any chronology.

Usage

From source file:net.danlew.android.joda.ZoneInfoCompiler.java

License:Apache License

static Chronology getLenientISOChronology() {
    if (cLenientISO == null) {
        cLenientISO = LenientChronology.getInstance(ISOChronology.getInstanceUTC());
    }/*w  w  w  .j a v  a 2s . c o m*/
    return cLenientISO;
}