Skip to content
Snippets Groups Projects
Commit b9e9efd4 authored by Jan Kožusznik's avatar Jan Kožusznik
Browse files

remove super() call

parent 18681dfb
No related branches found
No related tags found
No related merge requests found
Showing
with 0 additions and 18 deletions
...@@ -10,7 +10,6 @@ public class HaaSOutputHolderImpl implements HaaSOutputHolder { ...@@ -10,7 +10,6 @@ public class HaaSOutputHolderImpl implements HaaSOutputHolder {
private HaaSOutputSource source; private HaaSOutputSource source;
private SynchronizableFileType type; private SynchronizableFileType type;
public HaaSOutputHolderImpl(HaaSOutputSource source, SynchronizableFileType typeForHold) { public HaaSOutputHolderImpl(HaaSOutputSource source, SynchronizableFileType typeForHold) {
super();
this.source = source; this.source = source;
this.type = typeForHold; this.type = typeForHold;
} }
......
...@@ -214,7 +214,6 @@ public class Job { ...@@ -214,7 +214,6 @@ public class Job {
private Progress progress; private Progress progress;
public P_ProgressNotifierAdapter(Progress progress) { public P_ProgressNotifierAdapter(Progress progress) {
super();
this.progress = progress; this.progress = progress;
} }
......
...@@ -102,7 +102,6 @@ public class JobManager { ...@@ -102,7 +102,6 @@ public class JobManager {
private long offset; private long offset;
public JobSynchronizableFile(SynchronizableFileType type, long offset) { public JobSynchronizableFile(SynchronizableFileType type, long offset) {
super();
this.type = type; this.type = type;
this.offset = offset; this.offset = offset;
} }
......
...@@ -13,7 +13,6 @@ public class PropertyHolder { ...@@ -13,7 +13,6 @@ public class PropertyHolder {
private Properties properties; private Properties properties;
public PropertyHolder(Path storage) { public PropertyHolder(Path storage) {
super();
this.storage = storage; this.storage = storage;
} }
......
...@@ -17,7 +17,6 @@ public class ObservableValueAdapter<S, T> implements ObservableValue<T> { ...@@ -17,7 +17,6 @@ public class ObservableValueAdapter<S, T> implements ObservableValue<T> {
private Map<ChangeListener<? super T>, ChangeListener<? super S>> mapOfListeners = new HashMap<>(); private Map<ChangeListener<? super T>, ChangeListener<? super S>> mapOfListeners = new HashMap<>();
public ObservableValueAdapter(ObservableValue<S> decorated, Function<S, T> map) { public ObservableValueAdapter(ObservableValue<S> decorated, Function<S, T> map) {
super();
this.adapted = decorated; this.adapted = decorated;
this.transformation = map; this.transformation = map;
} }
......
...@@ -18,7 +18,6 @@ public class ObservableValueRegistry<T> { ...@@ -18,7 +18,6 @@ public class ObservableValueRegistry<T> {
public ObservableValueRegistry(Function<T, UpdateStatus> updateFunction,Function<T,Object> stateProvider, public ObservableValueRegistry(Function<T, UpdateStatus> updateFunction,Function<T,Object> stateProvider,
Consumer<T> removeConsumer) { Consumer<T> removeConsumer) {
super();
this.updateFunction = updateFunction; this.updateFunction = updateFunction;
this.stateProvider = stateProvider; this.stateProvider = stateProvider;
this.removeConsumer = t-> { this.removeConsumer = t-> {
......
...@@ -55,7 +55,6 @@ public class TableViewContextMenu<T> { ...@@ -55,7 +55,6 @@ public class TableViewContextMenu<T> {
private Predicate<T> enableHandler; private Predicate<T> enableHandler;
public P_MenuItem(String text, Consumer<T> eventHandler, Predicate<T> enableHandler) { public P_MenuItem(String text, Consumer<T> eventHandler, Predicate<T> enableHandler) {
super();
this.enableHandler = enableHandler; this.enableHandler = enableHandler;
item = new MenuItem(text); item = new MenuItem(text);
item.setOnAction(e -> eventHandler.accept(getSelectedItem())); item.setOnAction(e -> eventHandler.accept(getSelectedItem()));
......
...@@ -17,7 +17,6 @@ public class UpdatableObservableValue<T> extends ObservableValueBase<T> { ...@@ -17,7 +17,6 @@ public class UpdatableObservableValue<T> extends ObservableValueBase<T> {
public UpdatableObservableValue(T wrapped, Function<T, UpdateStatus> updateFunction, public UpdatableObservableValue(T wrapped, Function<T, UpdateStatus> updateFunction,
Function<T, Object> stateProvider) { Function<T, Object> stateProvider) {
super();
this.wrapped = wrapped; this.wrapped = wrapped;
this.updateFunction = updateFunction; this.updateFunction = updateFunction;
this.stateProvider = stateProvider; this.stateProvider = stateProvider;
......
...@@ -207,7 +207,6 @@ public class HaaSClient { ...@@ -207,7 +207,6 @@ public class HaaSClient {
} }
public HaaSClient(Settings settings) { public HaaSClient(Settings settings) {
super();
this.settings = settings; this.settings = settings;
this.templateId = settings.getTemplateId(); this.templateId = settings.getTemplateId();
this.timeOut = settings.getTimeout(); this.timeOut = settings.getTimeout();
...@@ -434,7 +433,6 @@ public class HaaSClient { ...@@ -434,7 +433,6 @@ public class HaaSClient {
private ProgressNotifier notifier; private ProgressNotifier notifier;
public P_ProgressNotifierDecorator(ProgressNotifier notifier) { public P_ProgressNotifierDecorator(ProgressNotifier notifier) {
super();
this.notifier = notifier; this.notifier = notifier;
} }
......
...@@ -32,7 +32,6 @@ class HaaSFileTransferImp implements HaaSFileTransfer { ...@@ -32,7 +32,6 @@ class HaaSFileTransferImp implements HaaSFileTransfer {
public HaaSFileTransferImp(FileTransferMethodExt ft, String sessionId, long jobId, FileTransferWsSoap fileTransfer, public HaaSFileTransferImp(FileTransferMethodExt ft, String sessionId, long jobId, FileTransferWsSoap fileTransfer,
ScpClient scpClient, ProgressNotifier notifier) { ScpClient scpClient, ProgressNotifier notifier) {
super();
this.ft = ft; this.ft = ft;
this.scpClient = scpClient; this.scpClient = scpClient;
this.fileTransfer = fileTransfer; this.fileTransfer = fileTransfer;
......
...@@ -15,7 +15,6 @@ class TransferFileProgressForHaaSClient implements TransferFileProgress { ...@@ -15,7 +15,6 @@ class TransferFileProgressForHaaSClient implements TransferFileProgress {
public TransferFileProgressForHaaSClient(long totalSize, ProgressNotifier notifier) { public TransferFileProgressForHaaSClient(long totalSize, ProgressNotifier notifier) {
super();
this.totalSize = totalSize; this.totalSize = totalSize;
this.notifier = notifier; this.notifier = notifier;
} }
......
...@@ -59,7 +59,6 @@ public class BenchmarkJobManager { ...@@ -59,7 +59,6 @@ public class BenchmarkJobManager {
public BenchmarkJob(Job job) { public BenchmarkJob(Job job) {
super();
this.job = job; this.job = job;
computationAccessor = new SPIMComputationAccessor() { computationAccessor = new SPIMComputationAccessor() {
......
...@@ -9,7 +9,6 @@ abstract public class PipelineBase<T extends PipelineBase<?,?>,S> { ...@@ -9,7 +9,6 @@ abstract public class PipelineBase<T extends PipelineBase<?,?>,S> {
public PipelineBase( S id) { public PipelineBase( S id) {
super();
this.id = id; this.id = id;
} }
......
...@@ -13,7 +13,6 @@ public class SPIMComputationAccessorDecoratorWithTimeout implements SPIMComputat ...@@ -13,7 +13,6 @@ public class SPIMComputationAccessorDecoratorWithTimeout implements SPIMComputat
private P_ResultCacheHolder<Set<String>> changedFilesCache; private P_ResultCacheHolder<Set<String>> changedFilesCache;
public SPIMComputationAccessorDecoratorWithTimeout(SPIMComputationAccessor decorated, long intervalForQueryInMs) { public SPIMComputationAccessorDecoratorWithTimeout(SPIMComputationAccessor decorated, long intervalForQueryInMs) {
super();
this.intervalForQueryInMs = intervalForQueryInMs; this.intervalForQueryInMs = intervalForQueryInMs;
outputCache = new P_ResultCacheHolder<>(x -> decorated.getActualOutput()); outputCache = new P_ResultCacheHolder<>(x -> decorated.getActualOutput());
changedFilesCache = new P_ResultCacheHolder<>(set -> { changedFilesCache = new P_ResultCacheHolder<>(set -> {
...@@ -44,7 +43,6 @@ public class SPIMComputationAccessorDecoratorWithTimeout implements SPIMComputat ...@@ -44,7 +43,6 @@ public class SPIMComputationAccessorDecoratorWithTimeout implements SPIMComputat
private Function<T, T> producer; private Function<T, T> producer;
public P_ResultCacheHolder(Function<T, T> producer) { public P_ResultCacheHolder(Function<T, T> producer) {
super();
this.producer = producer; this.producer = producer;
} }
......
...@@ -52,7 +52,6 @@ public class SPIMPipelineProgressViewController implements FXFrame.Controller { ...@@ -52,7 +52,6 @@ public class SPIMPipelineProgressViewController implements FXFrame.Controller {
} }
private static String toCss(Color color) { private static String toCss(Color color) {
// TODO Auto-generated method stub
return "rgb(" + Math.round(color.getRed() * 255.0) + "," return "rgb(" + Math.round(color.getRed() * 255.0) + ","
+ Math.round(color.getGreen() * 255.0) + "," + Math.round(color.getGreen() * 255.0) + ","
+ Math.round(color.getBlue() * 255.0) + ")"; + Math.round(color.getBlue() * 255.0) + ")";
......
...@@ -40,7 +40,6 @@ public class ScpClient implements Closeable { ...@@ -40,7 +40,6 @@ public class ScpClient implements Closeable {
} }
public ScpClient(String hostName, String username, Identity privateKeyFile) throws JSchException { public ScpClient(String hostName, String username, Identity privateKeyFile) throws JSchException {
super();
init(hostName, username, privateKeyFile); init(hostName, username, privateKeyFile);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment