langtools/src/share/classes/com/sun/tools/javac/file/Paths.java
changeset 2981 76ea6ddc4f72
parent 1486 a7d1338ca96e
child 4548 bc0d5b3c3b2d
equal deleted inserted replaced
2980:f391c41bae7e 2981:76ea6ddc4f72
    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     public static Paths instance(Context context) {
    69     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     }