@@ -67,7 +67,7 @@ else if (LaboratorySchema.TABLE_SAMPLES.equalsIgnoreCase(name))
6767 return super .createWrappedTable (name , sourceTable , cf );
6868 }
6969
70- private SimpleTable getSubjectsTable (String name , @ NotNull TableInfo schematable , ContainerFilter cf )
70+ private SimpleTable <?> getSubjectsTable (String name , @ NotNull TableInfo schematable , ContainerFilter cf )
7171 {
7272 return new ContainerScopedTable <>(this , schematable , cf , "subjectname" ).init ();
7373 }
@@ -77,27 +77,27 @@ private TableInfo getContainerScopedTable(String name, @NotNull TableInfo schema
7777 return new ContainerScopedTable <>(this , schematable , cf , pkCol ).init ();
7878 }
7979
80- private SimpleTable getDnaOligosTable (String name , @ NotNull TableInfo schematable , ContainerFilter cf )
80+ private SimpleTable <?> getDnaOligosTable (String name , @ NotNull TableInfo schematable , ContainerFilter cf )
8181 {
8282 return new ContainerIncrementingTable (this , schematable , cf , "oligo_id" ).init ();
8383 }
8484
85- private SimpleTable getSamplesTable (String name , @ NotNull TableInfo schematable , ContainerFilter cf )
85+ private SimpleTable <?> getSamplesTable (String name , @ NotNull TableInfo schematable , ContainerFilter cf )
8686 {
8787 return new ContainerIncrementingTable (this , schematable , cf , "freezerid" ).init ();
8888 }
8989
90- private SimpleTable getPeptideTable (String name , @ NotNull TableInfo schematable , ContainerFilter cf )
90+ private SimpleTable <?> getPeptideTable (String name , @ NotNull TableInfo schematable , ContainerFilter cf )
9191 {
9292 return new ContainerIncrementingTable (this , schematable , cf , "peptideId" ).init ();
9393 }
9494
95- private SimpleTable getAntibodiesTable (String name , @ NotNull TableInfo schematable , ContainerFilter cf )
95+ private SimpleTable <?> getAntibodiesTable (String name , @ NotNull TableInfo schematable , ContainerFilter cf )
9696 {
9797 return new ContainerIncrementingTable (this , schematable , cf , "antibodyId" ).init ();
9898 }
9999
100- private SimpleTable getWorkbooksTable (String name , @ NotNull TableInfo schematable , ContainerFilter cf )
100+ private SimpleTable <?> getWorkbooksTable (String name , @ NotNull TableInfo schematable , ContainerFilter cf )
101101 {
102102 return new LaboratoryWorkbooksTable (this , schematable , cf ).init ();
103103 }
0 commit comments