Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
dariah
search-commons
Commits
4e5a837a
Commit
4e5a837a
authored
Jul 29, 2020
by
Gradl, Tobias
Browse files
Implement git capabilities of processing-adapters (#406)
parent
badff8d2
Pipeline
#16247
passed with stages
in 5 minutes and 14 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/main/java/eu/dariah/de/search/crawling/CrawlManagerImpl.java
View file @
4e5a837a
...
...
@@ -217,13 +217,13 @@ public class CrawlManagerImpl implements CrawlManager, ApplicationContextAware,
String
access
=
null
;
String
file
=
null
;
for
(
AccessMethods
mAv
:
AccessMethods
.
values
())
{
if
(
mAv
.
equals
Name
(
ep
.
getAccessType
()))
{
if
(
mAv
.
toString
().
toLowerCase
().
equals
(
ep
.
getAccessType
()
.
toLowerCase
()
))
{
access
=
mAv
.
toString
();
break
;
}
}
for
(
FileTypes
ftv
:
FileTypes
.
values
())
{
if
(
ftv
.
toString
().
equals
(
ep
.
getFileType
()))
{
if
(
ftv
.
toString
().
toLowerCase
().
equals
(
ep
.
getFileType
()
.
toLowerCase
()
))
{
file
=
ftv
.
toString
();
break
;
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment