mirror of
https://github.com/lightbend/config.git
synced 2025-01-30 14:10:08 +08:00
fix formatting of a comment in Parseable.java
This commit is contained in:
parent
2dc420ccf0
commit
4add0330d8
@ -86,11 +86,10 @@ public abstract class Parseable implements ConfigParseable {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// the general idea is that any work should be in here, not in the
|
// the general idea is that any work should be in here, not in the
|
||||||
// constructor,
|
// constructor, so that exceptions are thrown from the public parse()
|
||||||
|
// function and not from the creation of the Parseable.
|
||||||
// so that exceptions are thrown from the public parse() function and not
|
// Essentially this is a lazy field. The parser should close the
|
||||||
// from the creation of the Parseable. Essentially this is a lazy field.
|
// reader when it's done with it.
|
||||||
// The parser should close the reader when it's done with it.
|
|
||||||
// ALSO, IMPORTANT: if the file or URL is not found, this must throw.
|
// ALSO, IMPORTANT: if the file or URL is not found, this must throw.
|
||||||
// to support the "allow missing" feature.
|
// to support the "allow missing" feature.
|
||||||
protected abstract Reader reader() throws IOException;
|
protected abstract Reader reader() throws IOException;
|
||||||
|
Loading…
Reference in New Issue
Block a user