Skip to content

Commit

Permalink
Fix to uppercase
Browse files Browse the repository at this point in the history
  • Loading branch information
entrypointkr committed Oct 11, 2018
1 parent dab528b commit d330e94
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ public Construct exec(Target t, Environment env, List<Construct> args) throws Co
CArray parent = new CArray(t);
for (PacketType type : PacketType.values()) {
CArray info = new CArray(t, 3);
info.set("protocol", type.getProtocol().getPacketName());
info.set("side", type.getSender().getPacketName());
info.set("name", type.name());
info.set("protocol", type.getProtocol().getPacketName().toUpperCase());
info.set("side", type.getSender().getPacketName().toUpperCase());
info.set("name", type.name().toUpperCase());
parent.push(info, t);
}
return parent;
Expand Down

0 comments on commit d330e94

Please sign in to comment.