Removed unused private methods

This commit is contained in:
Kai Zimmermann
2016-01-27 11:45:53 +01:00
parent 9d21ee672a
commit fbcc0b8de0

View File

@@ -8,9 +8,6 @@
*/ */
package org.eclipse.hawkbit.ui.management.dstable; package org.eclipse.hawkbit.ui.management.dstable;
import java.io.IOException;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.Collection; import java.util.Collection;
import java.util.List; import java.util.List;
@@ -39,8 +36,6 @@ import com.google.common.base.Strings;
* Simple implementation of generics bean query which dynamically loads a batch * Simple implementation of generics bean query which dynamically loads a batch
* of beans. * of beans.
* *
*
*
*/ */
public class DistributionBeanQuery extends AbstractBeanQuery<ProxyDistribution> { public class DistributionBeanQuery extends AbstractBeanQuery<ProxyDistribution> {
@@ -93,7 +88,8 @@ public class DistributionBeanQuery extends AbstractBeanQuery<ProxyDistribution>
/** /**
* Load all the Distribution set. * Load all the Distribution set.
* *
* @parm startIndex as page start * @param startIndex
* as page start
* @param count * @param count
* as total data * as total data
*/ */
@@ -193,15 +189,4 @@ public class DistributionBeanQuery extends AbstractBeanQuery<ProxyDistribution>
return distributionSetManagement; return distributionSetManagement;
} }
private void writeObject(final ObjectOutputStream out) throws IOException {
out.defaultWriteObject();
out.writeObject(firstPageDistributionSets);
}
@SuppressWarnings("unchecked")
private void readObject(final ObjectInputStream in) throws IOException, ClassNotFoundException {
in.defaultReadObject();
firstPageDistributionSets = (Page<DistributionSet>) in.readObject();
}
} }