Skip to content

Commit

Permalink
Clean up server.js
Browse files Browse the repository at this point in the history
  • Loading branch information
hobinjk-ptc committed Sep 24, 2024
1 parent 81aaf11 commit 1b78e41
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions server.js
Original file line number Diff line number Diff line change
Expand Up @@ -4173,14 +4173,6 @@ function forEachObject(callback) {
}
}

function _forEachHumanPoseObject(callback) {
for (var objectID in objects) {
if (objects[objectID].isHumanPose) {
callback(objectID, objects[objectID]);
}
}
}

function doesFrameExist(objectKey, frameKey) {
if (doesObjectExist(objectKey)) {
var foundObject = getObject(objectKey);
Expand Down Expand Up @@ -4261,7 +4253,7 @@ hardwareAPI.screenObjectServerCallBack(function (object, frame, node, touchOffse
* All links that use the id will fire up the engine to process the link.
**/

var engine = {
const engine = {
link: undefined,
internalObjectDestination: undefined,
blockKey: undefined,
Expand Down

0 comments on commit 1b78e41

Please sign in to comment.