Make default constructor private

This commit is contained in:
Gary Gregory 2024-09-25 14:59:09 -04:00
parent 689f563276
commit 36c6d12416
1 changed files with 7 additions and 0 deletions

View File

@ -36,6 +36,13 @@ public abstract class Strings {
*/
public static class Builder extends AbstractSupplier<Strings, Builder, RuntimeException> {
/**
* Constructs a new instance.
*/
private Builder() {
// empty
}
/**
* Ignores case when possible.
*/