Skip to content

Commit

Permalink
#3475 - fixed Sugar-R3 and Base-R1 connnection
Browse files Browse the repository at this point in the history
  • Loading branch information
chgayane authored and chgayane committed Nov 9, 2023
1 parent 58be80c commit be12d94
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/ketcher-core/src/domain/entities/RNABase.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import { BaseMonomer } from 'domain/entities/BaseMonomer';

export class RNABase extends BaseMonomer {
public getValidSourcePoint(monomer: BaseMonomer) {
return monomer.firstFreeAttachmentPoint;
public getValidSourcePoint(_monomer: BaseMonomer) {
return this.firstFreeAttachmentPoint;
}

public getValidTargetPoint(monomer: BaseMonomer) {
return monomer.firstFreeAttachmentPoint;
public getValidTargetPoint(_monomer: BaseMonomer) {
return this.firstFreeAttachmentPoint ;
}
}

0 comments on commit be12d94

Please sign in to comment.