summaryrefslogtreecommitdiff
path: root/java/typeMigration/src/intentionDescriptions/ConvertFieldToThreadLocalIntention/before.java.template
blob: 14fae704762b4b85576ec2fddb28753bb34cae7d (plain)
1
2
3
4
5
6
7
8
9
10
import java.text.*;
import java.util.Date;

public class X {
  private static DateFormat <spot>dateFormat</spot> = new SimpleDateFormat("EEE, dd MMM yyyy HH:mm:ss z");

  public String getDateString() {
    return dateFormat.format(new Date());
  }
}