Skip to content

Commit

Permalink
clean code
Browse files Browse the repository at this point in the history
  • Loading branch information
Rodrigo Quelca committed Oct 4, 2023
1 parent 8bac3de commit 4f1c5aa
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ export default {
if (cellView){
point = V(this.paper.viewport).toLocalPoint(clientX, clientY);
}
debugger;
const comingFromDataStoreOrDataObject = this.node.isBpmnType('bpmn:DataStoreReference', 'bpmn:DataObjectReference');
const dataAssociationConfig = comingFromDataStoreOrDataObject
Expand Down
3 changes: 0 additions & 3 deletions src/multiplayer/multiplayer.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ import { faker } from '@faker-js/faker';
import MessageFlow from '@/components/nodes/genericFlow/MessageFlow';
import SequenceFlow from '@/components/nodes/genericFlow/SequenceFlow';
import DataOutputAssociation from '@/components/nodes/genericFlow/DataOutputAssociation';
import DataAssociation from '@/components/nodes/genericFlow/DataAssociation';
const BpmnFlows = [
{
type: 'processmaker-modeler-text-annotation',
Expand Down Expand Up @@ -241,7 +240,6 @@ export default class Multiplayer {
return null; // Return null if no matching element is found
}
addFlow(data) {
console.log(data);
const yMapNested = new Y.Map();
this.doTransact(yMapNested, data);
this.yArray.push([yMapNested]);
Expand All @@ -252,7 +250,6 @@ export default class Multiplayer {
this.#nodeIdGenerator.updateCounters();
}
createFlow(data){
console.log(data);
const { paper } = this.modeler;
const sourceElem = this.getJointElement(paper.model, data.sourceRefId);
const targetElem = this.getJointElement(paper.model, data.targetRefId);
Expand Down

0 comments on commit 4f1c5aa

Please sign in to comment.