Skip to content

Commit eb7763e

Browse files
committed
Address comments
1 parent 6e855e5 commit eb7763e

File tree

4 files changed

+196
-199
lines changed

4 files changed

+196
-199
lines changed

rosidl_gen/index.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,6 @@ async function generateInPath(path) {
5555
}
5656

5757
function generateInPathSyncWorker(targetPath) {
58-
console.log('generateInPathSyncWorker' + targetPath);
5958
try {
6059
// Use child_process.spawnSync for truly synchronous execution
6160
const result = require('child_process').spawnSync(
Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
msg/Point.idl
2-
msg/Point.msg
2+
msg/Point.msg
3+
msg/Testing.idl
4+
msg/Testing.msg

test/test-message-object.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -149,8 +149,7 @@ describe('Rclnodejs createMessage() testing', function () {
149149
it('expecting exception when passing ' + testData.toString(), function () {
150150
assert.throws(
151151
() => {
152-
const t = rclnodejs.createMessage(testData);
153-
console.log(t);
152+
rclnodejs.createMessage(testData);
154153
},
155154
function (e) {
156155
return e instanceof Error;

0 commit comments

Comments
 (0)