Mercurial > hg4j
comparison src/org/tmatesoft/hg/internal/Internals.java @ 418:528b6780a8bd
A bit of FIXME cleanup (mostly degraded to TODO post 1.0), comments and javadoc
| author | Artem Tikhomirov <tikhomirov.artem@gmail.com> |
|---|---|
| date | Thu, 22 Mar 2012 21:02:20 +0100 |
| parents | ee8264d80747 |
| children | 7f136a3fa671 |
comparison
equal
deleted
inserted
replaced
| 417:ccd7d25e5aea | 418:528b6780a8bd |
|---|---|
| 297 } | 297 } |
| 298 f = new File(hgInstallDir, "hgrc.d/"); | 298 f = new File(hgInstallDir, "hgrc.d/"); |
| 299 if (f.canRead() && f.isDirectory()) { | 299 if (f.canRead() && f.isDirectory()) { |
| 300 return listConfigFiles(f); | 300 return listConfigFiles(f); |
| 301 } | 301 } |
| 302 // FIXME query registry, e.g. with | 302 // TODO post-1.0 query registry, e.g. with |
| 303 // Runtime.exec("reg query HKLM\Software\Mercurial") | 303 // Runtime.exec("reg query HKLM\Software\Mercurial") |
| 304 // | 304 // |
| 305 f = new File("C:\\Mercurial\\Mercurial.ini"); | 305 f = new File("C:\\Mercurial\\Mercurial.ini"); |
| 306 if (f.exists()) { | 306 if (f.exists()) { |
| 307 return Collections.singletonList(f); | 307 return Collections.singletonList(f); |
