We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2353957 commit f3f2977Copy full SHA for f3f2977
1 file changed
app/src/main/java/org/gnucash/android/model/Transaction.java
@@ -262,7 +262,7 @@ public Money getBalance(String accountUID){
262
* <p><b>Note:</b> If this is a multi-currency transaction, an imbalance of zero will be returned</p>
263
* @return Money imbalance of the transaction or zero if it is a multi-currency transaction
264
*/
265
- public Money getImbalance(){
+ private Money getImbalance(){
266
Money imbalance = Money.createZeroInstance(mCommodity.getCurrencyCode());
267
for (Split split : mSplitList) {
268
if (!split.getQuantity().getCommodity().equals(mCommodity)) {
0 commit comments