Skip to content

Commit 1f9496a

Browse files
committed
Remove redundant private declaration for enum.
1 parent 915f695 commit 1f9496a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

jsmpp/src/main/java/org/jsmpp/bean/InterfaceVersion.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public enum InterfaceVersion {
4242

4343
private byte value;
4444

45-
private InterfaceVersion(byte value) {
45+
InterfaceVersion(byte value) {
4646
this.value = value;
4747
}
4848

jsmpp/src/main/java/org/jsmpp/util/StringParameter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ public enum StringParameter {
8181
* @param rangeMinAndMax
8282
* @param errCode AKA error code on command_status.
8383
*/
84-
private StringParameter(StringType type, int min, int max, boolean rangeMinAndMax, int errCode) {
84+
StringParameter(StringType type, int min, int max, boolean rangeMinAndMax, int errCode) {
8585
this.type = type;
8686
this.min = min;
8787
this.max = max;

0 commit comments

Comments
 (0)