We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f50959 commit 736f16bCopy full SHA for 736f16b
java/src/main/java/com/genexus/specific/java/GXSmartCacheProvider.java
@@ -152,10 +152,11 @@ public boolean isEnabled()
152
153
@Override
154
public void setUpdated(String table, int handle) {
155
- Vector<String> tablesUpdatedInUTLHandle = getTablesUpdatedInUTL(handle);
156
- if (isEnabled() && ! tablesUpdatedInUTLHandle.contains(table))
157
- tablesUpdatedInUTLHandle.add(table);
158
-
+ if (isEnabled()) {
+ Vector<String> tablesUpdatedInUTLHandle = getTablesUpdatedInUTL(handle);
+ if (!tablesUpdatedInUTLHandle.contains(table))
+ tablesUpdatedInUTLHandle.add(table);
159
+ }
160
}
161
162
private Vector<String> getTablesUpdatedInUTL(Integer handle){
0 commit comments