Skip to content
This repository was archived by the owner on Feb 8, 2023. It is now read-only.

Commit 29c9797

Browse files
authored
Merge pull request #29 from JevinMenezes/master
Update README, Travis config, pom.xml & Fix #28
2 parents fdedfb9 + 21e5048 commit 29c9797

11 files changed

+9
-115
lines changed

.classpath

Lines changed: 0 additions & 50 deletions
This file was deleted.

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,7 @@
66
/pom.xml.releaseBackup
77
*.iml
88
.idea
9-
.vscode
9+
.vscode
10+
.settings
11+
.classpath
12+
.project

.project

Lines changed: 0 additions & 29 deletions
This file was deleted.

.settings/org.eclipse.core.resources.prefs

Lines changed: 0 additions & 5 deletions
This file was deleted.

.settings/org.eclipse.jdt.apt.core.prefs

Lines changed: 0 additions & 2 deletions
This file was deleted.

.settings/org.eclipse.jdt.core.prefs

Lines changed: 0 additions & 12 deletions
This file was deleted.

.settings/org.eclipse.m2e.core.prefs

Lines changed: 0 additions & 4 deletions
This file was deleted.

.settings/org.eclipse.wst.common.project.facet.core.xml

Lines changed: 0 additions & 5 deletions
This file was deleted.

.travis.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
language: java
22

33
jdk:
4-
# - oraclejdk8
5-
# - oraclejdk9
64
- oraclejdk11
75
- oraclejdk12
86
- oraclejdk13

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Include the maven dependency in your `pom.xml`:
1919
</dependency>
2020
```
2121

22-
If you don`t use Maven you can build the artifact from this repository, by installing [git SCM](https://git-scm.com/downloads), [Maven](https://maven.apache.org/download.cgi) and executing the commands below:
22+
If you don't use Maven you can build the artifact from this repository, by installing [git SCM](https://git-scm.com/downloads), [Maven](https://maven.apache.org/download.cgi) and executing the commands below:
2323

2424
```shell
2525
$ git clone https://github.com/js-cookie/java-cookie.git
@@ -144,7 +144,7 @@ To override the default cookie decoding you need to use a [converter](#converter
144144

145145
## Cookie Attributes
146146

147-
the default cookie attributes can be set globally by setting properties of the `.defaults()` instance or individually for each call to `.set(...)` by passing an `Attributes` instance in the last argument. Per-call attributes override the default attributes.
147+
The default cookie attributes can be set globally by setting properties of the `.defaults()` instance or individually for each call to `.set(...)` by passing an `Attributes` instance in the last argument. Per-call attributes override the default attributes.
148148

149149
```java
150150
Cookies cookies = Cookies.initFromServlet( request, response );
@@ -242,7 +242,7 @@ Define whether your cookie should be restricted to a first party or same-site co
242242

243243
**Default:** not set
244244

245-
Note that more recent browsers are making "Lax" the default value even without specifiying anything here.
245+
Note that more recent browsers are making "Lax" the default value even without specifying anything here.
246246

247247
**Examples:**
248248

0 commit comments

Comments
 (0)