forked from D-Net/dnet-hadoop
[EOSC TAG] remove reduntant check for jupyter notebook
This commit is contained in:
parent
b18bbca8af
commit
5f9383b2d9
|
@ -199,13 +199,6 @@ public class SparkEoscTag {
|
||||||
return false;
|
return false;
|
||||||
if (s.getSubject().stream().anyMatch(sbj -> sbj.getValue().toLowerCase().contains("jupyter")))
|
if (s.getSubject().stream().anyMatch(sbj -> sbj.getValue().toLowerCase().contains("jupyter")))
|
||||||
return true;
|
return true;
|
||||||
if (s
|
|
||||||
.getSubject()
|
|
||||||
.stream()
|
|
||||||
.anyMatch(
|
|
||||||
sbj -> sbj.getValue().toLowerCase().contains("python") &&
|
|
||||||
sbj.getValue().toLowerCase().contains("notebook")))
|
|
||||||
return true;
|
|
||||||
if (s.getSubject().stream().anyMatch(sbj -> sbj.getValue().toLowerCase().contains("python")) &&
|
if (s.getSubject().stream().anyMatch(sbj -> sbj.getValue().toLowerCase().contains("python")) &&
|
||||||
s.getSubject().stream().anyMatch(sbj -> sbj.getValue().toLowerCase().contains("notebook")))
|
s.getSubject().stream().anyMatch(sbj -> sbj.getValue().toLowerCase().contains("notebook")))
|
||||||
return true;
|
return true;
|
||||||
|
|
Loading…
Reference in New Issue