Author: snjeza
Date: 2011-12-12 16:01:04 -0500 (Mon, 12 Dec 2011)
New Revision: 37239
Modified:
trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/model/ProjectUtil.java
Log:
JBIDE-9850 feeds should be cached so it doesnt show blank when opening up the second time
Modified:
trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/model/ProjectUtil.java
===================================================================
---
trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/model/ProjectUtil.java 2011-12-12
20:29:41 UTC (rev 37238)
+++
trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/model/ProjectUtil.java 2011-12-12
21:01:04 UTC (rev 37239)
@@ -518,6 +518,11 @@
return file;
}
}
+ if (urlModified == 0) {
+ if (file.exists()) {
+ return file;
+ }
+ }
if (file.exists()) {
long modified = file.lastModified();
if (urlModified == modified) {
Show replies by date