blob: 66ea4c1db0305395e5feebf10769943cb58ae5f4 [file] [log] [blame]
/*
* Copyright (c) 2017 CEA.
* 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:
* CEA - 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;
}
}