~ubuntu-branches/ubuntu/maverick/proguard/maverick

« back to all changes in this revision

Viewing changes to src/proguard/util/BasicMatcher.java

  • Committer: Bazaar Package Importer
  • Author(s): Sam Clegg
  • Date: 2005-11-13 09:42:59 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20051113094259-432zf4yyw4890mmn
Tags: 3.4-1
* New upstream release (Closes: #338355)
* debian/control: bump standards version
* debian/copyright: update FSF address
* increase java stack size for proguard and proguardgui

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* $Id: BasicMatcher.java,v 1.6 2004/08/15 12:39:30 eric Exp $
 
1
/* $Id: BasicMatcher.java,v 1.7 2005/05/22 00:23:31 eric Exp $
2
2
 *
3
3
 * ProGuard -- shrinking, optimization, and obfuscation of Java class files.
4
4
 *
67
67
 
68
68
    /**
69
69
     * Creates a new BasicMatcher.
70
 
     * @param regularExpression the regular expression against which strings
71
 
     *                          will be matched.
72
 
     * @param wildcardCharacters an optional extra list of wildcard matching
73
 
     *                           characters.
74
 
     * @param wildcardCharacters an optional extra list of extended wildcard
75
 
     *                           matching characters.
 
70
     * @param regularExpression          the regular expression against which
 
71
     *                                   strings will be matched.
 
72
     * @param wildcardCharacters         an optional extra list of wildcard
 
73
     *                                   matching characters.
 
74
     * @param extendedWildcardCharacters an optional extra list of extended
 
75
     *                                   wildcard matching characters.
76
76
     */
77
77
    public BasicMatcher(String regularExpression,
78
78
                        char[] wildcardCharacters,