Browse Source

Fix protected-> public so method can be accessed outside package

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@270859 13f79535-47bb-0310-9956-ffa450edef68
remotes/1754501535858414914/tmp_63c0593a82bb20fd9ffac54dba44ab00b5551a05
Peter Donald 23 years ago
parent
commit
4cccf2fa39
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      proposal/myrmidon/src/java/org/apache/myrmidon/framework/PatternSet.java

+ 1
- 1
proposal/myrmidon/src/java/org/apache/myrmidon/framework/PatternSet.java View File

@@ -92,7 +92,7 @@ public class PatternSet
/**
* Adds the patterns of the other instance to this set.
*/
protected void append( final PatternSet other )
public void append( final PatternSet other )
{
m_includeList.addAll( other.m_includeList );
m_excludeList.addAll( other.m_excludeList );


Loading…
Cancel
Save