~ubuntu-branches/ubuntu/trusty/jabref/trusty

« back to all changes in this revision

Viewing changes to src/java/net/sf/jabref/search/BasicSearch.java

  • Committer: Bazaar Package Importer
  • Author(s): gregor herrmann
  • Date: 2009-12-01 18:52:51 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20091201185251-08e2unpn1jl8ijq8
Tags: 2.6~beta2-1
* Remove alternative dependency on sun-java5-jre which was removed from the
  archive. Also adjust README.Debian and /usr/bin/jabref.
* New upstream beta release:
  - fixes "allow to disable (re)storing of current tab for entries"
    (closes: #447767)
  - thanks again to Philip Rinn for his help with the upgrade
* debian/copyright: add new developer.
* Refresh patches 01_free_javac.patch and 06_BibtexEntry.patch.
* Adjust debian/jabref.links and debian/jabref.install to new jar file.
* Simplify debian/jabref.dirs.
* Add a presubj fragment for reportbug.

Show diffs side-by-side

added added

removed removed

Lines of Context:
8
8
 
9
9
import net.sf.jabref.BibtexEntry;
10
10
import net.sf.jabref.SearchRule;
11
 
import net.sf.jabref.export.layout.format.RemoveBrackets;
 
11
import net.sf.jabref.export.layout.format.RemoveLatexCommands;
12
12
 
13
13
/**
14
14
 * Search rule for simple search.
17
17
    private boolean caseSensitive;
18
18
    private boolean regExp;
19
19
    Pattern[] pattern;
20
 
    static RemoveBrackets removeBrackets = new RemoveBrackets();
21
 
 
 
20
    //static RemoveBrackets removeLatexCommands = new RemoveBrackets();
 
21
    static RemoveLatexCommands removeBrackets = new RemoveLatexCommands();
22
22
 
23
23
    public BasicSearch(boolean caseSensitive, boolean regExp) {
24
24