Files
VisualSapfor/src/Visual_DVM_2021/Passes/Server/ComponentsRepositoryPass.java
2023-11-19 02:12:44 +03:00

9 lines
288 B
Java

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