]> source.dussan.org Git - jgit.git/commit
Use local variable in RepositoryTestCase.indexState 75/51475/1
authorChris Price <chris@puppetlabs.com>
Tue, 7 Jul 2015 11:30:06 +0000 (12:30 +0100)
committerChris Price <chris@puppetlabs.com>
Tue, 7 Jul 2015 11:34:03 +0000 (12:34 +0100)
commit88168c6d603833a7033af973af0282dc7056d7ef
tree2fa2d0a6b4a9c42d4b91639767c8039bccba4396
parentd2fbbc910a8ecc6cec36354b09fc276b5a236543
Use local variable in RepositoryTestCase.indexState

There is a signature of the test helper method `indexState`,
in `RepositoryTestCase`, that accepts a `Repository` object
as an argument.  However, there was one line of code where
this variable was not being used, and the method was instead
referring to a member variable `db`.  I believe this was
probably just an oversight in a previous refactor, and
that the correct behavior is to use the variable from
the argument list.  This change also has the benefit
of making it possible to convert this method to a static
method, since it no longer relies on any state from the class.

Bug: 436200
Change-Id: Iac95b046dc5bd0b3756642e241c3637f1fad3609
Signed-off-by: Chris Price <chris@puppetlabs.com>
org.eclipse.jgit.junit/src/org/eclipse/jgit/junit/RepositoryTestCase.java