Subversion Repositories SmartDukaan

Rev

Rev 8673 | Rev 8677 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 8673 Rev 8676
Line 229... Line 229...
229
 
229
 
230
        // First, copy the base css
230
        // First, copy the base css
231
        BufferedReader in = null;
231
        BufferedReader in = null;
232
        try {
232
        try {
233
            in = new BufferedReader(new InputStreamReader(
233
            in = new BufferedReader(new InputStreamReader(
234
                    getClass().getResourceAsStream("excelStyle.css")));
234
                    getClass().getResourceAsStream("/root/.m2/repository/readonly/excelStyle.css")));
235
            String line;
235
            String line;
236
            while ((line = in.readLine()) != null) {
236
            while ((line = in.readLine()) != null) {
237
                out.format("%s%n", line);
237
                out.format("%s%n", line);
238
            }
238
            }
239
        } catch (IOException e) {
239
        } catch (IOException e) {