This is called autoboxing.
Note that it will still create true Short objects automatically, and these occupy 16 bytes on your heap, the same as an Integer object. Only native short values only occupy 2 bytes (but cannot be put into java.util.collections).
In many situations
list.put((short) 12345);
list.put((short) 12345);
will in fact even create two such objects, i.e. 32 bytes plus the memory occupied by the list object. The pointers stored in the list already occupy 4-8 bytes each.
If you have just a few instances that is okay. If you have several millions this can impact performance badly because of memory management and use. With raw shorts you usually can go 10 times as far before becoming slow or running out of memory.