mirror of
https://github.com/beard7n/bsdports.git
synced 2026-04-12 19:41:18 +02:00
12 lines
400 B
C++
12 lines
400 B
C++
--- src/contribs-lib/CLucene/highlighter/WeightedTerm.cpp.orig 2011-03-16 20:21:07.000000000 -0400
|
|
+++ src/contribs-lib/CLucene/highlighter/WeightedTerm.cpp 2013-03-27 16:51:33.000000000 -0400
|
|
@@ -73,7 +73,7 @@
|
|
* @param weight the weight associated with this term
|
|
*/
|
|
void WeightedTerm::setWeight(float_t weight) {
|
|
- this->_weight = _weight;
|
|
+ _weight = weight;
|
|
cachedHashCode = 0;
|
|
}
|
|
|