Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
LSC
lsc
Commits
0beeb0e9
Commit
0beeb0e9
authored
Apr 13, 2010
by
Jonathan CLARKE
Browse files
Fixes #191: don't ignore the filter to exists method.
parent
b3991ddc
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/main/java/org/lsc/jndi/ScriptableJndiServices.java
View file @
0beeb0e9
...
...
@@ -117,7 +117,7 @@ public class ScriptableJndiServices extends ScriptableObject {
protected
List
<
String
>
_exists
(
final
String
dn
,
final
String
filter
)
throws
NamingException
{
if
(
jndiServices
.
exists
(
dn
))
{
if
(
jndiServices
.
exists
(
dn
,
filter
))
{
List
<
String
>
c
=
new
ArrayList
<
String
>();
c
.
add
(
dn
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment