aboutsummaryrefslogtreecommitdiffstats
path: root/node-admin/src/main/java/com/yahoo/vespa/hosted/node/admin/task/util/file/EditorFactory.java
blob: 66f54fc1967023d2958169343d9e94f1170d284a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.hosted.node.admin.task.util.file;

import java.nio.file.Path;

/**
 * @author hakonhall
 */
public class EditorFactory {
    public Editor create(Path path, LineEditor editor) {
        return new Editor(path, editor);
    }
}