comparison src/org/tmatesoft/hg/repo/HgRepoConfig.java @ 487:db48a77ec8ff

Access to reposiotry lock mechanism via HgRepositoryLock
author Artem Tikhomirov <tikhomirov.artem@gmail.com>
date Mon, 13 Aug 2012 18:11:47 +0200
parents 51d682cf9cdc
children 36e36b926747
comparison
equal deleted inserted replaced
486:d740edfff563 487:db48a77ec8ff
60 } 60 }
61 61
62 public String getStringValue(String section, String key, String defaultValue) { 62 public String getStringValue(String section, String key, String defaultValue) {
63 return config.getString(section, key, defaultValue); 63 return config.getString(section, key, defaultValue);
64 } 64 }
65
66 public int getIntegerValue(String section, String key, int defaultValue) {
67 return config.getInteger(section, key, defaultValue);
68 }
65 69
66 // 70 //
67 // 71 //
68 72
69 public PathsSection getPaths() { 73 public PathsSection getPaths() {