()
| 2153 | |
| 2154 | |
| 2155 | @Override |
| 2156 | public String getPathTranslated() { |
| 2157 | |
| 2158 | Context context = getContext(); |
| 2159 | if (context == null) { |
| 2160 | return null; |
| 2161 | } |
| 2162 | |
| 2163 | if (getPathInfo() == null) { |
| 2164 | return null; |
| 2165 | } |
| 2166 | |
| 2167 | return context.getServletContext().getRealPath(getPathInfo()); |
| 2168 | } |
| 2169 | |
| 2170 | |
| 2171 | @Override |
nothing calls this directly
no test coverage detected