Skip to content

Commit f87b4b6

Browse files
committed
removed unused self reference in assay and study constructors
1 parent 9d3392d commit f87b4b6

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/ISA/ISA/ArcTypes/ArcTypes.fs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ module ArcTypesAux =
8888

8989

9090
[<AttachMembers>]
91-
type ArcAssay(identifier: string, ?measurementType : OntologyAnnotation, ?technologyType : OntologyAnnotation, ?technologyPlatform : OntologyAnnotation, ?tables: ResizeArray<ArcTable>, ?performers : Person [], ?comments : Comment []) as this =
91+
type ArcAssay(identifier: string, ?measurementType : OntologyAnnotation, ?technologyType : OntologyAnnotation, ?technologyPlatform : OntologyAnnotation, ?tables: ResizeArray<ArcTable>, ?performers : Person [], ?comments : Comment []) =
9292
inherit ArcTables(defaultArg tables <| ResizeArray())
9393

9494
let performers = defaultArg performers [||]
@@ -559,7 +559,7 @@ type ArcAssay(identifier: string, ?measurementType : OntologyAnnotation, ?techno
559559
|> fun x -> x :?> int
560560

561561
[<AttachMembers>]
562-
type ArcStudy(identifier : string, ?title, ?description, ?submissionDate, ?publicReleaseDate, ?publications, ?contacts, ?studyDesignDescriptors, ?tables, ?registeredAssayIdentifiers: ResizeArray<string>, ?factors, ?comments) as this =
562+
type ArcStudy(identifier : string, ?title, ?description, ?submissionDate, ?publicReleaseDate, ?publications, ?contacts, ?studyDesignDescriptors, ?tables, ?registeredAssayIdentifiers: ResizeArray<string>, ?factors, ?comments) =
563563
inherit ArcTables(defaultArg tables <| ResizeArray())
564564

565565
let publications = defaultArg publications [||]

0 commit comments

Comments
 (0)