Skip to content

Commit 15e1bc3

Browse files
author
Vladimir Kotal
committed
add whitespace
1 parent cceb29c commit 15e1bc3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

opengrok-web/src/main/java/org/opengrok/web/api/v1/controller/ProjectsController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ public void deleteProject(@PathParam("project") final String projectName)
169169
// Lastly, remove data associated with the project.
170170
logger.log(Level.INFO, "deleting data for project {0}", projectName);
171171
for (String dirName: new String[]{IndexDatabase.INDEX_DIR, IndexDatabase.XREF_DIR}) {
172-
java.nio.file.Path path = Paths.get(env.getDataRootPath(),dirName, projectName);
172+
java.nio.file.Path path = Paths.get(env.getDataRootPath(), dirName, projectName);
173173
try {
174174
IOUtils.removeRecursive(path);
175175
} catch (IOException e) {

0 commit comments

Comments
 (0)