summaryrefslogtreecommitdiff
path: root/plugins/typeMigration/src/intentionDescriptions/ConvertFieldToAtomicIntention/after.java.template
blob: 53cfaf5be80c164b1dd7e674962d415b8d8b0e15 (plain)
1
2
3
4
import java.util.concurrent.atomic.*;
public class X {
  AtomicInteger count = new AtomicInteger(0);
}