package com.jetbrains.actionscript.profiler; import com.intellij.CommonBundle; import com.intellij.reference.SoftReference; import org.jetbrains.annotations.NonNls; import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.PropertyKey; import java.lang.ref.Reference; import java.util.ResourceBundle; /** * @author: Fedor.Korotkov */ public class ProfilerBundle { public static String message(@NotNull @PropertyKey(resourceBundle = BUNDLE) String key, @NotNull Object... params) { return CommonBundle.message(getBundle(), key, params); } private static Reference<ResourceBundle> ourBundle; @NonNls private static final String BUNDLE = "com.jetbrains.actionscript.profiler.ProfilerBundle"; private static ResourceBundle getBundle() { ResourceBundle bundle = SoftReference.dereference(ourBundle); if (bundle == null) { bundle = ResourceBundle.getBundle(BUNDLE); ourBundle = new SoftReference<>(bundle); } return bundle; } }