Skip to content

Commit

Permalink
Fix spacing in exception message
Browse files Browse the repository at this point in the history
  • Loading branch information
brunchboy committed Oct 17, 2023
1 parent e12ee71 commit 35b8bc9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/deepsymmetry/libcarabiner/Message.java
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ public Message(String response) {
break;

default:
throw new IllegalArgumentException("Unrecognized Carabiner response message :" + response);
throw new IllegalArgumentException("Unrecognized Carabiner response message: " + response);
}

read = parser.nextValue(parseable);
Expand Down

0 comments on commit 35b8bc9

Please sign in to comment.