Skip to content

Commit 41f5bd0

Browse files
committed
Types in java.lang are always in scope
1 parent 1c5ba60 commit 41f5bd0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/main/java/org/apache/commons/beanutils2/LazyDynaClass.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ public void add(final String name, final Class<?> type) {
187187
*/
188188
@Override
189189
public void add(final String name, final Class<?> type, final boolean readable, final boolean writable) {
190-
throw new java.lang.UnsupportedOperationException("readable/writable properties not supported");
190+
throw new UnsupportedOperationException("readable/writable properties not supported");
191191
}
192192

193193
/**

src/main/java/org/apache/commons/beanutils2/LazyDynaMap.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ public void add(final String name, final Class<?> type) {
201201
*/
202202
@Override
203203
public void add(final String name, final Class<?> type, final boolean readable, final boolean writable) {
204-
throw new java.lang.UnsupportedOperationException("readable/writable properties not supported");
204+
throw new UnsupportedOperationException("readable/writable properties not supported");
205205
}
206206

207207
/**

0 commit comments

Comments
 (0)