Skip to content

Commit

Permalink
Make constructor public.
Browse files Browse the repository at this point in the history
  • Loading branch information
raphw committed Dec 30, 2019
1 parent c4d765b commit 0445b5b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ class ForStaticField implements LoadedTypeInitializer, Serializable {
* @param fieldName the name of the field.
* @param value The value to be set.
*/
protected ForStaticField(String fieldName, Object value) {
public ForStaticField(String fieldName, Object value) {
this.fieldName = fieldName;
this.value = value;
}
Expand Down

0 comments on commit 0445b5b

Please sign in to comment.