-
-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
Showing
4 changed files
with
13 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,29 +26,29 @@ | |
* POSSIBILITY OF SUCH DAMAGE. | ||
*/ | ||
|
||
package cloud.piranha.uber; | ||
package cloud.piranha.fin; | ||
|
||
import java.io.File; | ||
|
||
/** | ||
* The Uber version of Piranha. | ||
* The Fin version of Piranha. | ||
* | ||
* @author Manfred Riem ([email protected]) | ||
*/ | ||
public class UberPiranha implements Runnable { | ||
public class FinPiranha implements Runnable { | ||
|
||
/** | ||
* Stores the temporary directory. | ||
*/ | ||
private File tempDirectory = new File(".piranhaUber"); | ||
private File tempDirectory = new File(".piranha/fin"); | ||
|
||
/** | ||
* Main method. | ||
* | ||
* @param arguments the command-line arguments. | ||
*/ | ||
public static void main(String[] arguments) { | ||
UberPiranha piranha = new UberPiranha(); | ||
FinPiranha piranha = new FinPiranha(); | ||
piranha.parseArguments(arguments); | ||
piranha.run(); | ||
} | ||
|
@@ -60,7 +60,7 @@ public static void main(String[] arguments) { | |
*/ | ||
private void parseArguments(String[] arguments) { | ||
for(int i=0; i<arguments.length; i++) { | ||
if (arguments[i].equals("--uber-temp-directory")) { | ||
if (arguments[i].equals("--fin-temp-directory")) { | ||
tempDirectory = new File(arguments[i + 1]); | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,12 +27,12 @@ | |
*/ | ||
|
||
/** | ||
* This module delivers Piranha Uber. | ||
* This module delivers Piranha Fin. | ||
* | ||
* @author Manfred Riem ([email protected]) | ||
*/ | ||
module cloud.piranha.embedded { | ||
module cloud.piranha.fin { | ||
|
||
exports cloud.piranha.uber; | ||
opens cloud.piranha.uber; | ||
exports cloud.piranha.fin; | ||
opens cloud.piranha.fin; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters