https://defect.opensolaris.org/bz/show_bug.cgi?id=17977

           Summary: Compiler errors For SingleTokenMatcher.java
    Classification: Development
           Product: opengrok
           Version: unspecified
          Platform: ANY/Generic
        OS/Version: All
            Status: NEW
          Severity: minor
          Priority: P3
         Component: build
        AssignedTo: [email protected]
        ReportedBy: [email protected]
                CC: [email protected]


I couldn't select the version, but I was trying to build .10 in
eclipse/Rational Developer 7.5

Had to adjust the constructor on the SingleTokenMatcher.java class to get it to
compile

>From 
    public SingleTokenMatcher(String token ) {
        this.mt = token;
    }

To
    public SingleTokenMatcher(String token, boolean caseInsensitive) {
        super(caseInsensitive);
        this.mt = token;
    }

I thought it was a typo, and seemed to follow TokenSetMatcher and
WildCardMatcher constructors..

-- 
Configure bugmail: https://defect.opensolaris.org/bz/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.
_______________________________________________
opengrok-dev mailing list
[email protected]
http://mail.opensolaris.org/mailman/listinfo/opengrok-dev

Reply via email to