Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
lcsim-deprecated
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
SLIC_software
lcsim-deprecated
Commits
b512d38b
Commit
b512d38b
authored
8 years ago
by
Whitney Armstrong
Browse files
Options
Downloads
Patches
Plain Diff
Fixed cached directories to not be hidden:
.cache -> cache .lcsim -> lcsim
parent
adf2f6f4
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
conditions/src/main/java/org/lcsim/conditions/ConditionsReader.java
+1
-1
1 addition, 1 deletion
.../src/main/java/org/lcsim/conditions/ConditionsReader.java
util/src/main/java/org/lcsim/util/cache/FileCache.java
+2
-2
2 additions, 2 deletions
util/src/main/java/org/lcsim/util/cache/FileCache.java
with
3 additions
and
3 deletions
conditions/src/main/java/org/lcsim/conditions/ConditionsReader.java
+
1
−
1
View file @
b512d38b
...
...
@@ -34,7 +34,7 @@ import org.lcsim.util.cache.FileCache.Validator;
public
abstract
class
ConditionsReader
{
private
static
Properties
aliases
;
private
static
final
File
home
=
new
File
(
FileCache
.
getCacheRoot
(),
"
.
lcsim"
);
private
static
final
File
home
=
new
File
(
FileCache
.
getCacheRoot
(),
"lcsim"
);
private
static
FileCache
cache
;
/**
...
...
This diff is collapsed.
Click to expand it.
util/src/main/java/org/lcsim/util/cache/FileCache.java
+
2
−
2
View file @
b512d38b
...
...
@@ -15,7 +15,7 @@ import java.net.URLEncoder;
* @author tonyj
*/
public
class
FileCache
{
private
static
final
File
home
=
new
File
(
getCacheRoot
(),
"
.
cache"
);
private
static
final
File
home
=
new
File
(
getCacheRoot
(),
"cache"
);
private
static
final
ByteFormat
format
=
new
ByteFormat
();
private
File
cache
;
private
PrintStream
print
=
System
.
out
;
...
...
@@ -200,4 +200,4 @@ public class FileCache {
*/
void
checkValidity
(
URL
url
,
File
file
)
throws
IOException
;
}
}
\ No newline at end of file
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment