mirror of
https://github.com/VolmitSoftware/Iris.git
synced 2025-07-19 10:43:14 +00:00
fixhl
This commit is contained in:
parent
801c44389e
commit
c8c4a0f61b
@ -47,6 +47,11 @@ public class ReactiveFolder {
|
||||
if (checkCycle % 3 == 0 ? fw.checkModified() : fw.checkModifiedFast()) {
|
||||
for (File i : fw.getCreated()) {
|
||||
if (i.getName().endsWith(".iob") || i.getName().endsWith(".json") || i.getName().endsWith(".js")) {
|
||||
if(i.getPath().contains(".iris"))
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
||||
modified = true;
|
||||
break;
|
||||
}
|
||||
@ -54,6 +59,11 @@ public class ReactiveFolder {
|
||||
|
||||
if (!modified) {
|
||||
for (File i : fw.getChanged()) {
|
||||
if(i.getPath().contains(".iris"))
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
||||
if (i.getName().endsWith(".iob") || i.getName().endsWith(".json") || i.getName().endsWith(".js")) {
|
||||
modified = true;
|
||||
break;
|
||||
@ -63,6 +73,11 @@ public class ReactiveFolder {
|
||||
|
||||
if (!modified) {
|
||||
for (File i : fw.getDeleted()) {
|
||||
if(i.getPath().contains(".iris"))
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
||||
if (i.getName().endsWith(".iob") || i.getName().endsWith(".json") || i.getName().endsWith(".js")) {
|
||||
modified = true;
|
||||
break;
|
||||
|
Loading…
x
Reference in New Issue
Block a user