We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cceb29c commit 15e1bc3Copy full SHA for 15e1bc3
opengrok-web/src/main/java/org/opengrok/web/api/v1/controller/ProjectsController.java
@@ -169,7 +169,7 @@ public void deleteProject(@PathParam("project") final String projectName)
169
// Lastly, remove data associated with the project.
170
logger.log(Level.INFO, "deleting data for project {0}", projectName);
171
for (String dirName: new String[]{IndexDatabase.INDEX_DIR, IndexDatabase.XREF_DIR}) {
172
- java.nio.file.Path path = Paths.get(env.getDataRootPath(),dirName, projectName);
+ java.nio.file.Path path = Paths.get(env.getDataRootPath(), dirName, projectName);
173
try {
174
IOUtils.removeRecursive(path);
175
} catch (IOException e) {
0 commit comments