-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
LPD-37806 Patch to remove the extra release call to match tomcat jasp…
…er's behavior, this is needed to work with tomcat jsp api rather than the out of date glassfish jsp api.
- Loading branch information
1 parent
982e70e
commit e3b213c
Showing
2 changed files
with
22 additions
and
5 deletions.
There are no files selected for viewing
20 changes: 20 additions & 0 deletions
20
modules/third-party/javax-servlet-jsp/patches/10-LPD-37806.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
diff --git a/org/apache/jasper/compiler/TagLibraryInfoImpl.java b/org/apache/jasper/compiler/TagLibraryInfoImpl.java | ||
index dba5becd0cf5e..e933930c88f56 100644 | ||
--- a/org/apache/jasper/compiler/TagLibraryInfoImpl.java | ||
+++ b/org/apache/jasper/compiler/TagLibraryInfoImpl.java | ||
@@ -954,12 +954,9 @@ public class TagLibraryInfoImpl extends TagLibraryInfo implements TagConstants { | ||
uri = URN_JSPTLD + uri; | ||
} | ||
|
||
- ValidationMessage[] messages = tlv.validate(getPrefixString(), uri, | ||
- thePage); | ||
- tlv.release(); | ||
- | ||
- return messages; | ||
+ return tlv.validate(getPrefixString(), uri, thePage); | ||
} | ||
|
||
protected TagLibraryValidator tagLibraryValidator; | ||
} | ||
+/* @generated */ | ||
\ No newline at end of file |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters