Prefer this canonical form:
(:import
(com.google.protobuf CodedInputStream CodedOutputStream))
over this repetitive:
(:import
(com.google.protobuf CodedInputStream)
(com.google.protobuf CodedOutputStream))
Also sort class names within it, i. e. change
(:import
(com.google.protobuf CodedOutputStream CodedInputStream)
to
(:import
(com.google.protobuf CodedInputStream CodedOutputStream)