Skip to content

Commit

Permalink
tweaks to property value
Browse files Browse the repository at this point in the history
  • Loading branch information
jorabin committed Oct 9, 2024
1 parent 6315bb7 commit 0f12b81
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ public Factory<? extends PropertyValue> newUnprotected() {
class StringStore implements PropertyValue {
private final String value;
private final static PropertyValue.Factory<StringStore> factory =
new PropertyValue.Factory<StringStore>(){
new PropertyValue.Factory<>(){

@Override
public StringStore of(CharSequence aCharSequence) {
Expand Down Expand Up @@ -195,7 +195,7 @@ class BytesStore implements PropertyValue, Serializable {
private final byte[] value;

private final static PropertyValue.Factory<BytesStore> factory =
new PropertyValue.Factory<BytesStore>(){
new PropertyValue.Factory<>(){

@Override
public BytesStore of(CharSequence aCharSequence) {
Expand Down Expand Up @@ -305,7 +305,7 @@ private byte[] getBytes() {
}

private final static PropertyValue.Factory<SealedStore> factory =
new PropertyValue.Factory<SealedStore>(){
new PropertyValue.Factory<>(){

@Override
public SealedStore of(CharSequence aCharSequence) {
Expand Down

0 comments on commit 0f12b81

Please sign in to comment.