Files
VisualSapfor/src/Visual_DVM_2021/Passes/ComponentsRepositoryPass.java
2023-09-17 22:13:42 +03:00

9 lines
281 B
Java

package Visual_DVM_2021.Passes;
import Common.Global;
import Repository.Server.ComponentsServer;
public abstract class ComponentsRepositoryPass<T> extends RepositoryPass<ComponentsServer, T> {
public ComponentsRepositoryPass() {
super(Global.componentsServer);
}
}