SONAR suggestion - toString() should not return null

Change-Id: I9b31515b24052d60895ef2151609ea734ef18c3b
This commit is contained in:
Ray Milkey 2018-01-24 16:45:51 -08:00
parent 506d8e61ee
commit 96b2640b27

View File

@ -80,7 +80,7 @@ public enum DHCPPacketType {
break;
}
return null;
return "";
}
public static DHCPPacketType getType(final int value) {