blob: 2cb01b2b925206639f78bb22fe5fc0717e953c9b [file] [log] [blame]
/*
* Copyright (c) 2020 Kentyou.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Kentyou - initial API and implementation
*/
package org.eclipse.sensinact.gateway.generic.test.bundle;
/**
*
*/
public class Calculator {
public Calculator() {
}
int plus(int operand1, int operand2) {
return operand1 + operand2;
}
}