Skip to content

Commit a9a3f48

Browse files
gmarcosbrestyled-commits
authored andcommitted
* Output information about what's being broadcast * Expose/promote QNameString in Logging to allow other logging locations to get a formatted FullQName * Revert inadvertent build_overrides/pigweed_environment.gni This partially reverts commit 15639cf. # Conflicts: # build_overrides/pigweed_environment.gni * Update BUILD.gn deps for QNameString & move it to its own file to avoid circular deps in /responders * Remove unnecessary StringBuilder addition as QNameString is now in its own file * Restyled by whitespace * Restyled by clang-format * Check for null params Co-authored-by: Restyled.io <commits@restyled.io>
1 parent 0ff0d0e commit a9a3f48

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/controller/java/src/chip/devicecontroller/ChipDeviceController.java

+3
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,9 @@ public static void loadJni() {
5050
* ID
5151
*/
5252
public ChipDeviceController(ControllerParams params) {
53+
if (params == null) {
54+
throw new NullPointerException("params cannot be null");
55+
}
5356
deviceControllerPtr = newDeviceController(params);
5457
}
5558

0 commit comments

Comments
 (0)