src/share/classes/com/sun/tools/javac/file/Paths.java

changeset 450
4011f49b4af8
parent 285
4ce1c1400334
child 497
16b9b7f45933
equal deleted inserted replaced
449:ff823a039e16 450:4011f49b4af8
64 64
65 /** Get the Paths instance for this context. 65 /** Get the Paths instance for this context.
66 * @param context the context 66 * @param context the context
67 * @return the Paths instance for this context 67 * @return the Paths instance for this context
68 */ 68 */
69 static Paths instance(Context context) { 69 public static Paths instance(Context context) {
70 Paths instance = context.get(pathsKey); 70 Paths instance = context.get(pathsKey);
71 if (instance == null) 71 if (instance == null)
72 instance = new Paths(context); 72 instance = new Paths(context);
73 return instance; 73 return instance;
74 } 74 }

mercurial