This repository was archived by the owner on Sep 12, 2018. It is now read-only.
File tree 3 files changed +0
-8
lines changed
3 files changed +0
-8
lines changed Original file line number Diff line number Diff line change 11
11
.idea *
12
12
* .iml
13
13
dist
14
- public /uploadFiles
15
14
uploads
16
15
repo /
17
16
RUNNING_PID
Original file line number Diff line number Diff line change @@ -52,7 +52,6 @@ public static Result removeTrailer(String paths){
52
52
}
53
53
54
54
public static Result init () {
55
- makeUploadFolder ();
56
55
makeTestRepository ();
57
56
return redirect (routes .Application .index ());
58
57
}
@@ -63,10 +62,6 @@ public static Result jsMessages() {
63
62
return ok (messages .generate ("Messages" )).as ("application/javascript" );
64
63
}
65
64
66
- private static void makeUploadFolder () {
67
- new File ("public/uploadFiles/" ).mkdir ();
68
- }
69
-
70
65
private static void makeTestRepository () {
71
66
for (Project project : Project .find .all ()) {
72
67
Logger .debug ("makeTestRepository: " + project .name );
Original file line number Diff line number Diff line change @@ -28,8 +28,6 @@ public class Constants {
28
28
public static final String TITLE = "title" ;
29
29
public static final String DESCRIPTION = "description" ;
30
30
31
- public static final String DEFAULT_LOGO_PATH = "public/uploadFiles/" ;
32
-
33
31
public static final String RESOURCE_KEY_DELIM = "_" ;
34
32
public static final String ADMIN_LOGIN_ID = "admin" ;
35
33
You can’t perform that action at this time.
0 commit comments