BUG-869: remove empty statements
[yangtools.git] / yang / yang-common / src / main / java / org / opendaylight / yangtools / yang / common / SimpleDateFormatUtil.java
1 /*
2  * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8
9 package org.opendaylight.yangtools.yang.common;
10
11 import java.text.SimpleDateFormat;
12
13 public final class SimpleDateFormatUtil {
14
15     private SimpleDateFormatUtil() {
16         throw new UnsupportedOperationException("Utility class should not be instantiated");
17     }
18
19     private static final ThreadLocal<SimpleDateFormat> REVISION_FORMAT = new ThreadLocal<SimpleDateFormat>() {
20
21         @Override
22         protected SimpleDateFormat initialValue() {
23             return new SimpleDateFormat("yyyy-MM-dd");
24         }
25
26         @Override
27         public void set(SimpleDateFormat value) {
28             throw new UnsupportedOperationException();
29         }
30
31     };
32
33     public static SimpleDateFormat getRevisionFormat() {
34         return REVISION_FORMAT.get();
35     }
36 }