Skip to content

Commit 4a43e09

Browse files
committed
Removed remaining java code
1 parent 8e028fe commit 4a43e09

10 files changed

+0
-94246
lines changed

CONTRIBUTING.md

-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ TODO
44
## Styleguides
55
### Git
66
### Python
7-
### Java
87

98
## Submitting Changes
109
TODO

protocol/Makefile

-9
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@ help:
1313
@echo " install protobuf from the included distribution"
1414
@echo "make build"
1515
@echo " compile tira's protobufs"
16-
@echo "make build-java"
17-
@echo " compile tira's protobufs"
1816
@echo "make build-python"
1917
@echo " compile tira's protobufs"
2018
@echo "make clean"
@@ -34,7 +32,6 @@ build:
3432
# TODO check if virtualenv is installed
3533
! command -v protoc > /dev/null 2>&1 || make setup
3634
make venv
37-
make build-java
3835
make build-python
3936

4037
# Requirements are in setup.py, so whenever setup.py is changed, re-run installation of dependencies.
@@ -54,12 +51,6 @@ build-python:
5451
sed -i 's/import tira_host_pb2 as tira__host__pb2/from . import tira_host_pb2 as tira__host__pb2/g' $(BUILD_PATH)/python/tira_host_pb2_grpc.py
5552
touch $(BUILD_PATH)/python/__init__.py
5653

57-
build-java:
58-
mkdir -p $(BUILD_PATH)/java
59-
protoc -I=$(SRC_DIR) --java_out=$(BUILD_PATH)/java $(SRC_DIR)/tira_to_web.proto
60-
protoc -I=$(SRC_DIR) --java_out=$(BUILD_PATH)/java $(SRC_DIR)/tira_messages.proto
61-
protoc -I=$(SRC_DIR) --java_out=$(BUILD_PATH)/java $(SRC_DIR)/TiraClientWebMessages.proto
62-
6354
clean:
6455
rm -r $(VENV_NAME)
6556
rm -r $(BUILD_PATH)

protocol/README.md

-1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,5 @@ Or use the individual targets, depending on your needs:
1717
```bash
1818
sudo make setup # install protoc, the protobuf compiler from the distribution
1919
make venv # setup python to compile the python targets
20-
make build-java
2120
make build-python
2221
```

0 commit comments

Comments
 (0)