Comment #1: /home/edmund/evaluate_projects/hsqldb-2.3.2/hsqldb/src/org/hsqldb/lib/FileUtil.java: 359-363 [COMMENT #1] First try the Context ClassLoader try { fis = getClass().getResourceAsStream(fileName); if (fis == null) { ****** COMMENT #1 ****** ClassLoader cl = Thread.currentThread().getContextClassLoader(); if (cl != null) { fis = cl.getResourceAsStream(fileName); } } } catch (Throwable t) { # Rating on this comment # 1: accurate, adequate, concise and useful at describing the source code. (committable) # 2: not accurate, adequate, concise, or useful, at describing the source code but can be fixed with minor modifications. # (committable but require fixes) # 3: not accurate, adequate, concise, or useful at describing the source code. (not committable) # (Fill in after the keyword: 1, 2 or 3) CLASSIFICATION: 1 ———————————— Comment #2: /home/edmund/evaluate_projects/hsqldb-2.3.2/hsqldb/src/org/hsqldb/persist/RAFileInJar.java: 230-234 [COMMENT #1] First try the Context ClassLoader try { fis = getClass().getResourceAsStream(fileName); if (fis == null) { ****** COMMENT #1 ****** ClassLoader cl = Thread.currentThread().getContextClassLoader(); if (cl != null) { fis = cl.getResourceAsStream(fileName); } } } catch (Throwable t) { # Rating on this comment # 1: accurate, adequate, concise and useful at describing the source code. (committable) # 2: not accurate, adequate, concise, or useful, at describing the source code but can be fixed with minor modifications. # (committable but require fixes) # 3: not accurate, adequate, concise, or useful at describing the source code. (not committable) # (Fill in after the keyword: 1, 2 or 3) CLASSIFICATION: 1 ———————————— Comment #3: /home/edmund/evaluate_projects/hsqldb-2.3.2/hsqldb/src/org/hsqldb/persist/LobStoreInJar.java: 129-133 [COMMENT #1] First try the Context ClassLoader try { fis = getClass().getResourceAsStream(fileName); if (fis == null) { ****** COMMENT #1 ****** ClassLoader cl = Thread.currentThread().getContextClassLoader(); if (cl != null) { fis = cl.getResourceAsStream(fileName); } } } catch (Throwable t) { # Rating on this comment # 1: accurate, adequate, concise and useful at describing the source code. (committable) # 2: not accurate, adequate, concise, or useful, at describing the source code but can be fixed with minor modifications. # (committable but require fixes) # 3: not accurate, adequate, concise, or useful at describing the source code. (not committable) # (Fill in after the keyword: 1, 2 or 3) CLASSIFICATION: 1 ————————————