Skip to content

Commit

Permalink
add missing javadoc description for MimeTypeEntry getters
Browse files Browse the repository at this point in the history
Signed-off-by: Lukas Jungmann <lukas.jungmann@oracle.com>
  • Loading branch information
lukasj committed Apr 27, 2023
1 parent e049dac commit ad18b56
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion api/src/main/java/jakarta/activation/MimeTypeEntry.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 1997, 2021 Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1997, 2023 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Distribution License v. 1.0, which is available at
Expand Down Expand Up @@ -29,13 +29,17 @@ public MimeTypeEntry(String mime_type, String file_ext) {
}

/**
* Get MIME type string
*
* @return the MIME type string
*/
public String getMIMEType() {
return type;
}

/**
* Get the file extension
*
* @return the file extension
*/
public String getFileExtension() {
Expand Down

0 comments on commit ad18b56

Please sign in to comment.