equal
deleted
inserted
replaced
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 } |