You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 5, 2021. It is now read-only.
The interface org.yakindu.sct.generator.c.IGenArtifactConfigurations there is a method
List getConfigurations();
that has a design smell. The type parameter GenArtifactConfiguration of the returned list is actually an inner class of org.yakindu.sct.generator.c.GenArtifactConfigurations that implements IGenArtifactConfigurations. Thus, there is no real decoupling between the interface and its implementation.
Consider to create an interface IGenArtifactConfiguration for the type parameter of the getConfigurations() method.
The text was updated successfully, but these errors were encountered:
The interface org.yakindu.sct.generator.c.IGenArtifactConfigurations there is a method
List getConfigurations();
that has a design smell. The type parameter GenArtifactConfiguration of the returned list is actually an inner class of org.yakindu.sct.generator.c.GenArtifactConfigurations that implements IGenArtifactConfigurations. Thus, there is no real decoupling between the interface and its implementation.
Consider to create an interface IGenArtifactConfiguration for the type parameter of the getConfigurations() method.
The text was updated successfully, but these errors were encountered: