All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.hyf.hotrefresh.plugin.execute.executable.CloseDebugExecutable Maven / Gradle / Ivy

package com.hyf.hotrefresh.plugin.execute.executable;

import com.hyf.hotrefresh.common.args.ArgumentHolder;
import com.hyf.hotrefresh.common.Constants;
import com.hyf.hotrefresh.plugin.execute.Executable;

/**
 * @author baB_hyf
 * @date 2022/05/28
 */
public class CloseDebugExecutable implements Executable {

    @Override
    public Void execute() throws Exception {
        ArgumentHolder.put(Constants.ARG_DEBUG, false);
        return null;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy