26 lines
788 B
Java
26 lines
788 B
Java
![]() |
package net.i2p.i2pfirefox;
|
||
|
|
||
|
/**
|
||
|
* I2PChromiumProfileChecker.java
|
||
|
* Copyright (C) 2022 idk <hankhill19580@gmail.com>
|
||
|
* This program is free software: you can redistribute it and/or modify
|
||
|
* it under the terms of the MIT License. See LICENSE.md for details.
|
||
|
*
|
||
|
* This program is distributed in the hope that it will be useful,
|
||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||
|
*
|
||
|
* I2PGenericUnsafeBrowser is a wrapper which sets common environment
|
||
|
* variables for the process controlled by a processbuilder.
|
||
|
*
|
||
|
* @author idk
|
||
|
* @since 0.0.18
|
||
|
*/
|
||
|
|
||
|
public class I2PGenericUnsafeBrowser {
|
||
|
private final String unsafeBrowserPath;
|
||
|
I2PGenericUnsafeBrowser() {
|
||
|
unsafeBrowserPath = "";
|
||
|
}
|
||
|
|
||
|
}
|