Provide a hook for lazy configuration of this Digester instance. The default implementation does nothing, but subclasses can override as needed. Note This method may be called more than once.
()
| 1967 | * </p> |
| 1968 | */ |
| 1969 | protected void configure() { |
| 1970 | |
| 1971 | // Do not configure more than once |
| 1972 | if (configured) { |
| 1973 | return; |
| 1974 | } |
| 1975 | |
| 1976 | log = LogFactory.getLog("org.apache.tomcat.util.digester.Digester"); |
| 1977 | saxLog = LogFactory.getLog("org.apache.tomcat.util.digester.Digester.sax"); |
| 1978 | |
| 1979 | // Set the configuration flag to avoid repeating |
| 1980 | configured = true; |
| 1981 | } |
| 1982 | |
| 1983 | |
| 1984 | /** |
no test coverage detected