Skip to content
This repository was archived by the owner on Mar 20, 2021. It is now read-only.

Commit cd50caf

Browse files
committed
[2.3.x] Removed Implicit.
1 parent 4e3e2b4 commit cd50caf

File tree

1 file changed

+2
-4
lines changed
  • modules/http-server/src/main/java/org/glassfish/grizzly/http/server/util

1 file changed

+2
-4
lines changed

modules/http-server/src/main/java/org/glassfish/grizzly/http/server/util/MappingData.java

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -71,9 +71,8 @@ public class MappingData {
7171
public static final byte DEFAULT = 0x2;
7272
public static final byte EXACT = 0x4;
7373
public static final byte EXTENSION = 0x8;
74-
public static final byte IMPLICIT = 0x10;
75-
public static final byte PATH = 0x20;
76-
public static final byte UNKNOWN = 0x40;
74+
public static final byte PATH = 0x10;
75+
public static final byte UNKNOWN = 0x20;
7776

7877
public byte mappingType = UNKNOWN;
7978
public Object host = null;
@@ -135,7 +134,6 @@ private String getMappingDescription() {
135134
case DEFAULT: return "default";
136135
case EXACT: return "exact";
137136
case EXTENSION: return "extension";
138-
case IMPLICIT: return "implicit";
139137
case PATH: return "path";
140138
default: return "unknown";
141139
}

0 commit comments

Comments
 (0)