org.distributeme.test.inheritance.BaseServiceImpl Maven / Gradle / Ivy
package org.distributeme.test.inheritance;
public class BaseServiceImpl implements BaseService{
@Override
public long echo(long value) {
return value/2;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy