From 5c5f252d5c7a2bdfefd4fbe54a7ae64537a64874 Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Thu, 12 Jun 2025 21:19:36 +0300 Subject: Restructure project to use Maven exclusively and bump to v1.0.1-SNAPSHOT MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Remove legacy Ant build system (build.xml, sources/ directory) - Migrate to Maven-only build with standard directory structure - Add comprehensive Maven documentation and JAVA_HOME setup for Fedora - Update pom.xml with exec plugin and bump version to 1.0.1-SNAPSHOT - Add CLAUDE.md for development guidance - Update README.md with detailed build/run/clean instructions 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- sources/core/VSMessageStub.java | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 sources/core/VSMessageStub.java (limited to 'sources/core/VSMessageStub.java') diff --git a/sources/core/VSMessageStub.java b/sources/core/VSMessageStub.java deleted file mode 100644 index 95a515b..0000000 --- a/sources/core/VSMessageStub.java +++ /dev/null @@ -1,30 +0,0 @@ -package core; - -/** - * An object of this class represents a message stub. A message stub allows - * to run the init method on a VSMessage object. The init method should be - * hidden by the protocol programming API. - * - * @author Paul C. Buetow - */ -public class VSMessageStub { - /** The message */ - private VSMessage message; - - /** - * The constructor of the message stub. Creates a new message stub object. - * - * @param message the message - */ - public VSMessageStub(VSMessage message) { - this.message = message; - } - - /* (non-Javadoc) - * @see core.VSMessage#init(VSInternalProcess, java.util.String, boolean) - */ - public void init(VSInternalProcess process, String protocolClassname, - boolean isServerMessage) { - message.init(process, protocolClassname, isServerMessage); - } -} -- cgit v1.2.3