From 8125795395404f16763b427f7838b02b3a734c30 Mon Sep 17 00:00:00 2001 From: JonSnowWhite Date: Wed, 9 Jun 2021 13:04:50 +0200 Subject: [PATCH] changed ReadMe --- README.md | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 48e20403..36adbeca 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ Modifiable variable allows one to set modifications to basic types after or before their values are actually determined. When their actual values are determined and one tries to access the value via getters, the original value will be returned in a modified form accordingly. -#Installation +# Installation In order to compile and use ModifiableVariable, you need to have Java and Maven installed. On Ubuntu you can install Maven by running: @@ -31,7 +31,7 @@ If you want to use this project as a dependency, you do not have to compile it y ``` -#Usage +# Usage The best way to present the functionality of ModifiableVariables is by means of a simple example: @@ -57,15 +57,6 @@ ba.setModification(modifier); System.out.println(ArrayConverter.bytesToHexString(ba)); // 01 02 03 04 ``` -If you want to use modifiable variables in your maven projects, you can include the following dependency in your pom file: -```xml - - de.rub.nds - ModifiableVariable - 3.0.0 - -``` - # Supported data types The following modifiable variables are provided in this package with their modifications: * ModifiableBigInteger: add, explicitValue, shiftLeft, shiftRight, subtract, xor